aboutsummaryrefslogtreecommitdiff
path: root/res/xml/preferences.xml
blob: 8aec00c15a5e774436406cffdb3b956a6a39c57d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >

    <PreferenceCategory
        android:orderingFromXml="true"
        android:title="@string/preferences_catagory_positioning" >
        <CheckBoxPreference
            android:key="GPSEnabled"
            android:summaryOff="@string/preferences_gps_disabled"
            android:summaryOn="@string/preferences_gps_enabled"
            android:title="@string/preferences_gps" />
    </PreferenceCategory>
    <PreferenceCategory
        android:orderingFromXml="true"
        android:title="@string/preferences_catagory_bus_times" >
        <CheckBoxPreference
            android:key="liveBusTimesEnabled"
            android:summaryOff="@string/preferences_live_bus_times_disabled"
            android:summaryOn="@string/preferences_live_bus_times_enabled"
            android:title="@string/preferences_live_bus_times" />
    </PreferenceCategory>

</PreferenceScreen>