also handled removal of sites. also removed locationlib. There are too many issues with skyhook. Since this project does not use skyhook I will handle location internally. had to make a small modification to Add Social Site preference. For some reason the key value changed. works now.
32 lines
1.0 KiB
XML
32 lines
1.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:title="@string/app_name">
|
|
|
|
<PreferenceCategory
|
|
android:id="@+id/socialsites"
|
|
android:title="@string/social_site"
|
|
android:key="socialsites">
|
|
<Preference
|
|
android:title="@string/add_social_site"
|
|
android:key="@string/add_social_site" />
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/location_settings">
|
|
<ListPreference
|
|
android:title="@string/accuracy"
|
|
android:summary="@string/accuracy_info"
|
|
android:entries="@array/accuracy_entries"
|
|
android:entryValues="@array/accuracy_values"
|
|
android:key="accuracy"/>
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory
|
|
android:title="@string/about">
|
|
<com.TwentyCodes.android.TravelPost.UI.AboutView
|
|
android:title="@string/about_info"/>
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|