Files
travel_post/TravelPost/res/xml/travelpostmain.xml
warren powers 2dee86b00e initial commit of TravelPost rework.
TODO:
Need to finish Facebook and Twitter integration. To avoid context issues in facebook possible perform authorization in its own activity.
Need to handle the widget and posting.
2011-07-02 15:00:30 +00:00

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="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>