open-keychain/OpenPGP-Keychain/res/layout/import_keys_file_fragment.xml

32 lines
1.2 KiB
XML
Raw Normal View History

2013-09-18 20:02:51 -04:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2014-01-09 09:12:41 -05:00
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
2013-09-18 20:02:51 -04:00
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/import_keys_file_input"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="top|left"
android:inputType="textMultiLine|textUri"
android:lines="2"
android:maxLines="6"
android:minLines="2"
android:scrollbars="vertical" />
2014-01-09 09:12:41 -05:00
<com.beardedhen.androidbootstrap.BootstrapButton
2013-09-18 20:02:51 -04:00
android:id="@+id/import_keys_file_browse"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
2014-01-09 09:12:41 -05:00
android:layout_margin="4dp"
android:contentDescription="@string/filemanager_title_open"
2014-01-09 09:12:41 -05:00
bootstrapbutton:bb_icon_left="fa-folder-open"
bootstrapbutton:bb_roundedCorners="true"
bootstrapbutton:bb_size="default"
bootstrapbutton:bb_type="default" />
2013-09-18 20:02:51 -04:00
</LinearLayout>