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

30 lines
1.0 KiB
XML
Raw Normal View History

2013-09-18 20:02:51 -04:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2013-09-18 20:17:49 -04:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
2013-09-18 20:02:51 -04:00
2013-09-18 20:17:49 -04:00
<Spinner
android:id="@+id/import_keys_server_key_server"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<EditText
android:id="@+id/import_keys_server_query"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:inputType="textPersonName|textEmailAddress" />
<Button
android:id="@+id/import_keys_server_search"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/btn_search" />
</LinearLayout>
2013-09-18 20:02:51 -04:00
</LinearLayout>