Mike Lockwood 8ab8b411b8 LocationTracker: change copyright from Google to AOSP.
Change-Id: Id74bf74ac8eb372617136b4021853270d4bf5174
Signed-off-by: Mike Lockwood <lockwood@android.com>
2010-02-24 12:59:14 -05:00

64 lines
2.6 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2008 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- The Location preferences UI -->
<PreferenceScreen
xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/update_preference">
<EditTextPreference android:key="mintime_preference"
android:defaultValue="0"
android:title="@string/title_mintime_preference"
android:summary="@string/summary_mintime_preference"
android:dialogTitle="@string/dialog_title_mintime_preference" />
<EditTextPreference android:key="mindistance_preference"
android:defaultValue="0"
android:title="@string/title_mindistance_preference"
android:summary="@string/summary_mindistance_preference"
android:dialogTitle="@string/dialog_title_mindistance_preference" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/provider_preferences">
<CheckBoxPreference android:key="network_preference"
android:defaultValue="true"
android:title="@string/title_network_preference"
android:summary="@string/summary_network_preference" />
<CheckBoxPreference android:key="gps_preference"
android:defaultValue="true"
android:title="@string/title_gps_preference"
android:summary="@string/summary_gps_preference" />
<CheckBoxPreference android:key="signal_preference"
android:defaultValue="false"
android:title="@string/title_signal_preference"
android:summary="@string/summary_signal_preference" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/advanced_preferences">
<CheckBoxPreference android:key="advanced_log_preference"
android:defaultValue="false"
android:title="@string/title_advanced_log_preference"
android:summary="@string/summary_advanced_preference" />
</PreferenceCategory>
</PreferenceScreen>