29 lines
1.0 KiB
XML
29 lines
1.0 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingBottom="16dp"
|
||
|
|
android:paddingLeft="24dp"
|
||
|
|
android:paddingRight="24dp"
|
||
|
|
android:paddingTop="16dp">
|
||
|
|
|
||
|
|
<EditText
|
||
|
|
android:id="@+id/keyserver_url_edit_text"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:layout_marginBottom="8dp"
|
||
|
|
android:ems="10"
|
||
|
|
android:hint="@string/label_enter_keyserver_url"
|
||
|
|
android:imeOptions="actionDone" />
|
||
|
|
|
||
|
|
<CheckBox
|
||
|
|
android:id="@+id/verify_keyserver_checkbox"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/label_verify_keyserver"
|
||
|
|
android:checked="true"/>
|
||
|
|
|
||
|
|
</LinearLayout>
|