diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-06-22 10:09:16 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-06-22 10:09:16 -0700 |
commit | 6e14f332abb5e0128dc19ea4bbe86b8fe8c742ff (patch) | |
tree | 429d1bfaf91ad72e3be617df48cfc381bea5278f /subsonic-android/res/layout/sync_dialog.xml | |
parent | 51e3c8143dddb8192b6c1aa035e70c462902b338 (diff) | |
download | dsub-6e14f332abb5e0128dc19ea4bbe86b8fe8c742ff.tar.gz dsub-6e14f332abb5e0128dc19ea4bbe86b8fe8c742ff.tar.bz2 dsub-6e14f332abb5e0128dc19ea4bbe86b8fe8c742ff.zip |
Move to more abstract offline sync dialog that can support more syncs, added option for default action
Diffstat (limited to 'subsonic-android/res/layout/sync_dialog.xml')
-rw-r--r-- | subsonic-android/res/layout/sync_dialog.xml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/subsonic-android/res/layout/sync_dialog.xml b/subsonic-android/res/layout/sync_dialog.xml new file mode 100644 index 00000000..5133b753 --- /dev/null +++ b/subsonic-android/res/layout/sync_dialog.xml @@ -0,0 +1,12 @@ +<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="fill_parent" + android:layout_height="wrap_content" > + <CheckBox + android:id="@+id/sync_default" + style="?android:attr/textAppearanceMedium" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_margin="5dp" + android:checked="false" + android:text="@string/offline.sync_dialog_default"/> +</FrameLayout>
\ No newline at end of file |