blob: f4cdd9fbd4163717f9b40c492e0c84970513fa1c (
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="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="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>
|