Add setting for allowing Google to use location for better search results.

This commit is contained in:
Amith Yamasani
2009-06-11 22:32:33 -07:00
parent 14fa2b9986
commit f06d8698a4
3 changed files with 158 additions and 17 deletions

View File

@@ -17,11 +17,12 @@
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory
android:key="location_category"
android:title="@string/location_title">
<CheckBoxPreference
android:key="location_network"
android:title="@string/location_network_based"
android:title="@string/location_network_based"
android:summaryOn="@string/location_neighborhood_level"
android:summaryOff="@string/location_networks_disabled"/>
@@ -30,7 +31,13 @@
android:title="@string/location_gps"
android:summaryOn="@string/location_street_level"
android:summaryOff="@string/location_gps_disabled"/>
<CheckBoxPreference
android:key="use_location"
android:title="@string/use_location_title"
android:persistent="false"
android:summary="@string/use_location_summary"/>
</PreferenceCategory>
</PreferenceScreen>