aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/main/res/layout/decrypt_file_fragment.xml
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2014-03-29 00:11:07 +0100
committerDominik Schürmann <dominik@dominikschuermann.de>2014-03-30 19:32:04 +0200
commit4cec2194e01b7213271fa1fb0d50e5ae386fb16e (patch)
tree665c252d21815ded98c46a36be58d58feb6f5b0f /OpenPGP-Keychain/src/main/res/layout/decrypt_file_fragment.xml
parent224e8a7554a58f98b6ff71cc1a15d14108f98242 (diff)
downloadopen-keychain-4cec2194e01b7213271fa1fb0d50e5ae386fb16e.tar.gz
open-keychain-4cec2194e01b7213271fa1fb0d50e5ae386fb16e.tar.bz2
open-keychain-4cec2194e01b7213271fa1fb0d50e5ae386fb16e.zip
Experiments with fragments in decrypt activity
Diffstat (limited to 'OpenPGP-Keychain/src/main/res/layout/decrypt_file_fragment.xml')
-rw-r--r--OpenPGP-Keychain/src/main/res/layout/decrypt_file_fragment.xml48
1 files changed, 48 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/src/main/res/layout/decrypt_file_fragment.xml b/OpenPGP-Keychain/src/main/res/layout/decrypt_file_fragment.xml
new file mode 100644
index 000000000..f221ff8de
--- /dev/null
+++ b/OpenPGP-Keychain/src/main/res/layout/decrypt_file_fragment.xml
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <EditText
+ android:id="@+id/filename"
+ android:layout_width="0dip"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:gravity="top|left"
+ android:inputType="textMultiLine|textUri"
+ android:lines="4"
+ android:maxLines="10"
+ android:minLines="2"
+ android:scrollbars="vertical" />
+
+ <com.beardedhen.androidbootstrap.BootstrapButton
+ android:id="@+id/btn_browse"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_margin="4dp"
+ bootstrapbutton:bb_icon_left="fa-folder-open"
+ bootstrapbutton:bb_roundedCorners="true"
+ bootstrapbutton:bb_size="default"
+ bootstrapbutton:bb_type="default" />
+ </LinearLayout>
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <CheckBox
+ android:id="@+id/deleteAfterDecryption"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center_vertical"
+ android:text="@string/label_delete_after_decryption" />
+ </LinearLayout>
+</LinearLayout> \ No newline at end of file