diff options
Diffstat (limited to 'OpenPGP-Keychain/src/main/res/layout/decrypt_activity.xml')
-rw-r--r-- | OpenPGP-Keychain/src/main/res/layout/decrypt_activity.xml | 49 |
1 files changed, 36 insertions, 13 deletions
diff --git a/OpenPGP-Keychain/src/main/res/layout/decrypt_activity.xml b/OpenPGP-Keychain/src/main/res/layout/decrypt_activity.xml index 9d9e1a1e8..c6834d745 100644 --- a/OpenPGP-Keychain/src/main/res/layout/decrypt_activity.xml +++ b/OpenPGP-Keychain/src/main/res/layout/decrypt_activity.xml @@ -3,25 +3,25 @@ xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto" android:id="@+id/drawer_layout" android:layout_width="match_parent" - android:layout_height="match_parent" > + android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:fillViewport="true" - android:orientation="vertical" > + android:orientation="vertical"> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" - android:fillViewport="true" > + android:fillViewport="true"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical" android:paddingLeft="10dp" - android:paddingRight="10dp" > + android:paddingRight="10dp"> <LinearLayout android:id="@+id/signature" @@ -31,11 +31,11 @@ android:orientation="horizontal" android:padding="4dp" android:paddingLeft="10dp" - android:paddingRight="10dp" > + android:paddingRight="10dp"> <RelativeLayout android:layout_width="wrap_content" - android:layout_height="wrap_content" > + android:layout_height="wrap_content"> <ImageView android:id="@+id/ic_signature" @@ -54,7 +54,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" - android:paddingLeft="5dip" > + android:paddingLeft="5dip"> <TextView android:id="@+id/mainUserId" @@ -77,7 +77,7 @@ <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:orientation="horizontal" > + android:orientation="horizontal"> <ImageView android:id="@+id/sourcePrevious" @@ -106,14 +106,14 @@ android:id="@+id/source" android:layout_width="match_parent" android:layout_height="0dip" - android:layout_weight="1" > + android:layout_weight="1"> <LinearLayout android:id="@+id/sourceMessage" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" - android:padding="4dp" > + android:padding="4dp"> <EditText android:id="@+id/message" @@ -129,12 +129,12 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" - android:padding="4dp" > + android:padding="4dp"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:orientation="horizontal" > + android:orientation="horizontal"> <EditText android:id="@+id/filename" @@ -157,7 +157,7 @@ <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:orientation="horizontal" > + android:orientation="horizontal"> <CheckBox android:id="@+id/deleteAfterDecryption" @@ -168,6 +168,29 @@ </LinearLayout> </LinearLayout> </ViewFlipper> + + <TextView + style="@style/SectionHeader" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginBottom="4dp" + android:text="@string/section_decrypt_verify" /> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:padding="4dp"> + + <com.beardedhen.androidbootstrap.BootstrapButton + android:id="@+id/action_decrypt" + android:layout_width="match_parent" + android:layout_height="60dp" + android:padding="4dp" + android:text="@string/btn_decrypt_verify" + bootstrapbutton:bb_icon_left="fa-unlock" + bootstrapbutton:bb_type="info" /> + </LinearLayout> </LinearLayout> </ScrollView> </LinearLayout> |