blob: 51f176ccd49cc6ec6288e66a2a788735458b4578 (
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="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="Live Bus Times" />
</PreferenceCategory>
</PreferenceScreen>
|