diff options
author | steckbrief <steckbrief@chefmail.de> | 2015-11-03 21:09:36 +0100 |
---|---|---|
committer | steckbrief <steckbrief@chefmail.de> | 2015-11-03 21:09:36 +0100 |
commit | b22d863c362bb6492240700c0f69f1a5d926f46b (patch) | |
tree | acf185af5312a97f18819efd3927c46b12a797d1 /src/main/res/layout | |
parent | 11659eadb02b382804845d4e01a8536e02698468 (diff) |
Implements FS#26: Introduction of dialog to choose whether to resize a picture or not
Diffstat (limited to 'src/main/res/layout')
-rw-r--r-- | src/main/res/layout/dialog_userdecision.xml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/main/res/layout/dialog_userdecision.xml b/src/main/res/layout/dialog_userdecision.xml new file mode 100644 index 00000000..edeff812 --- /dev/null +++ b/src/main/res/layout/dialog_userdecision.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="vertical" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <TextView + android:layout_width="match_parent" + android:layout_height="32dp" + android:textAppearance="?android:attr/textAppearanceMedium" + android:text="Medium Text" + android:id="@+id/dlgUserDecQuestion" /> + + <CheckBox + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:text="@string/cplus_remember_userdecision" + android:id="@+id/dlgUserDecRemember" + android:checked="false" /> +</LinearLayout>
\ No newline at end of file |