mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-12-19 22:02:16 -05:00
48 lines
1.8 KiB
XML
48 lines
1.8 KiB
XML
|
<?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>
|