aboutsummaryrefslogtreecommitdiff
path: root/res/xml/preferences.xml
blob: e0609f6e32a837754d999b20b9ab5ca2c27873e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?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_live_bus_times" >
        <CheckBoxPreference
            android:key="liveBusTimesEnabled"
            android:summaryOff="@string/preferences_uni_link_live_bus_times_disabled"
            android:summaryOn="@string/preferences_uni_link_live_bus_times_enabled"
            android:title="@string/preferences_uni_link_live_bus_times" />
        <CheckBoxPreference
            android:key="nonUniLinkLiveBusTimesEnabled"
            android:summaryOff="@string/preferences_non_uni_link_live_bus_times_disabled"
            android:summaryOn="@string/preferences_non_uni_link_live_bus_times_enabled"
            android:title="@string/preferences_non_uni_link_live_bus_times" />
    </PreferenceCategory>
    <PreferenceCategory
        android:orderingFromXml="true"
        android:title="@string/preferences_catagory_data" >
        <CheckBoxPreference
            android:key="NonUniLinkBusStop"
            android:summaryOff="@string/preferences_non_uni_link_disabled"
            android:summaryOn="@string/preferences_non_uni_link_enabled"
            android:title="@string/preferences_non_uni_link" />
    </PreferenceCategory>

</PreferenceScreen>