mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-13 13:05:03 -05:00
46 lines
1.9 KiB
XML
46 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
<LinearLayout android:id="@+id/confirm_first_option"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
<TextView android:id="@+id/confirm_type_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Type" />
|
|
|
|
<Spinner android:id="@+id/spinner_protocol"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawSelectorOnTop="true"
|
|
android:layout_toRightOf="@id/confirm_type_label"
|
|
android:prompt="@string/account_setup_basics_email_hint" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/confirm_second_option"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_below="@id/confirm_first_option">
|
|
<TextView android:id="@+id/confirm_security_label"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Security" />
|
|
|
|
<Spinner android:id="@+id/spinner_sockettype"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawSelectorOnTop="true"
|
|
android:prompt="@string/account_setup_basics_email_hint"
|
|
android:layout_toRightOf="@id/confirm_security_label" />
|
|
</LinearLayout>
|
|
|
|
<TextView android:id="@+id/server_information"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_below="@id/confirm_second_option"/>
|
|
</RelativeLayout> |