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.
This commit is contained in:
warren powers
2011-07-02 15:00:30 +00:00
parent d9520f1302
commit 2dee86b00e
26 changed files with 1441 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
<?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>