Updated copyright.

Added device default theme for progress dialog.
Updated bit.ly credential dialog layout.
This commit is contained in:
Erik C. Thauvin 2015-04-14 13:15:22 -07:00
parent 100c7ecba9
commit 702c13221e
11 changed files with 62 additions and 53 deletions

View file

@ -1,13 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/prefs_googl_title" >
<PreferenceCategory android:title="@string/prefs_googl_title">
<CheckBoxPreference
android:defaultValue="true"
android:key="@string/prefs_key_googl_chkbox"
android:title="@string/prefs_googl_chkbox_title" />
android:title="@string/prefs_googl_chkbox_title"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/prefs_bitly_title" >
<PreferenceCategory android:title="@string/prefs_bitly_title">
<net.thauvin.erik.android.emaily.BitlyCredsDialog
android:dialogLayout="@layout/bitlycreds"
android:dialogTitle="@string/prefs_bitly_creds_dialog_title"
@ -15,37 +15,37 @@
android:negativeButtonText="@string/prefs_bitly_creds_cancel"
android:positiveButtonText="@string/prefs_bitly_creds_ok"
android:summary="@string/prefs_bitly_creds_summary"
android:title="@string/prefs_bitly_creds_title" >
android:title="@string/prefs_bitly_creds_title">
</net.thauvin.erik.android.emaily.BitlyCredsDialog>
</PreferenceCategory>
<PreferenceCategory android:title="@string/prefs_html_title" >
<PreferenceCategory android:title="@string/prefs_html_title">
<CheckBoxPreference
android:defaultValue="false"
android:key="@string/prefs_key_html_chkbox"
android:title="@string/prefs_html_chkbox_title" />
android:title="@string/prefs_html_chkbox_title"/>
</PreferenceCategory>
<PreferenceCategory android:title="@string/prefs_about_title" >
<PreferenceCategory android:title="@string/prefs_about_title">
<Preference
android:enabled="false"
android:key="@string/prefs_key_version"
android:singleLine="true"
android:summary="@string/prefs_copyright"
android:title="@string/prefs_version_title" />
android:title="@string/prefs_version_title"/>
<PreferenceScreen
android:summary="@string/prefs_help_summary"
android:title="@string/prefs_help_title" >
android:title="@string/prefs_help_title">
<intent
android:action="android.intent.action.VIEW"
android:data="@string/prefs_help_url" />
android:data="@string/prefs_help_url"/>
</PreferenceScreen>
<PreferenceScreen
android:key="@string/prefs_key_feedback"
android:summary="@string/prefs_feedback_summary"
android:title="@string/prefs_feedback_title" >
android:title="@string/prefs_feedback_title">
<intent
android:action="android.intent.action.VIEW"
android:data="@string/prefs_feedback_url" />
android:data="@string/prefs_feedback_url"/>
</PreferenceScreen>
</PreferenceCategory>