blob: 9de3a6190c3ae32de59a61460c280bc74441e429 (
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
38
39
40
41
42
43
44
45
46
|
<?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_appearance" >
<CheckBoxPreference
android:key="showIdentifiers"
android:summaryOff="@string/preferences_show_identifiers_disabled"
android:summaryOn="@string/preferences_show_identifiers_enabled"
android:title="@string/preferences_show_identifiers" />
</PreferenceCategory>
<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="uniLinkLiveBusTimesEnabled"
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="nonUniLinkBusStops"
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>
|