diff options
Diffstat (limited to 'OpenPGP-Keychain/res/layout/key_server_query.xml')
-rw-r--r-- | OpenPGP-Keychain/res/layout/key_server_query.xml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/OpenPGP-Keychain/res/layout/key_server_query.xml b/OpenPGP-Keychain/res/layout/key_server_query.xml new file mode 100644 index 000000000..20f260a95 --- /dev/null +++ b/OpenPGP-Keychain/res/layout/key_server_query.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" encoding="UTF-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:orientation="vertical" > + + <Spinner + android:id="@+id/keyServer" + android:layout_width="match_parent" + android:layout_height="wrap_content" /> + + <LinearLayout + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:orientation="horizontal" > + + <EditText + android:id="@+id/query" + android:layout_width="0dip" + android:layout_height="wrap_content" + android:layout_weight="1" + android:hint="@string/hint_secret_keys" + android:imeOptions="actionSearch" + android:inputType="textNoSuggestions" + android:singleLine="true" /> + + <Button + android:id="@+id/btn_search" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="@string/btn_search" /> + </LinearLayout> + + <ListView + android:id="@+id/list" + android:layout_width="match_parent" + android:layout_height="0dip" + android:layout_weight="1" /> + +</LinearLayout>
\ No newline at end of file |