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