2010-08-17 01:02:39 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2013-09-24 13:16:02 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-12 21:33:37 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2013-09-24 13:16:02 +02:00
|
|
|
android:orientation="vertical" >
|
2010-08-17 01:02:39 +00:00
|
|
|
|
2010-08-17 23:05:41 +00:00
|
|
|
<Spinner
|
2014-01-18 18:44:34 +01:00
|
|
|
android:id="@+id/sign_key_keyserver"
|
2014-01-12 21:33:37 +01:00
|
|
|
android:layout_width="match_parent"
|
2013-09-24 13:16:02 +02:00
|
|
|
android:layout_height="wrap_content" />
|
2010-08-17 23:05:41 +00:00
|
|
|
|
2010-08-17 01:02:39 +00:00
|
|
|
<LinearLayout
|
2014-01-12 21:33:37 +01:00
|
|
|
android:layout_width="match_parent"
|
2010-08-17 01:02:39 +00:00
|
|
|
android:layout_height="wrap_content"
|
2013-09-24 13:16:02 +02:00
|
|
|
android:orientation="horizontal" >
|
2010-08-17 01:02:39 +00:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/query"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-24 13:16:02 +02:00
|
|
|
android:layout_weight="1"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:hint="@string/hint_secret_keys"
|
2013-09-24 13:16:02 +02:00
|
|
|
android:imeOptions="actionSearch"
|
|
|
|
android:inputType="textNoSuggestions"
|
|
|
|
android:singleLine="true" />
|
2010-08-17 01:02:39 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btn_search"
|
|
|
|
android:layout_width="wrap_content"
|
2013-09-24 13:16:02 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/btn_search" />
|
2010-08-17 01:02:39 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ListView
|
|
|
|
android:id="@+id/list"
|
2014-01-12 21:33:37 +01:00
|
|
|
android:layout_width="match_parent"
|
2010-08-17 01:02:39 +00:00
|
|
|
android:layout_height="0dip"
|
2013-09-24 13:16:02 +02:00
|
|
|
android:layout_weight="1" />
|
2010-08-17 01:02:39 +00:00
|
|
|
|
2013-09-24 13:16:02 +02:00
|
|
|
</LinearLayout>
|