2011-07-20 08:52:42 -04:00
|
|
|
<?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">
|
|
|
|
|
2011-07-24 12:02:17 -04:00
|
|
|
<LinearLayout android:id="@+id/confirm_first_option"
|
2011-07-20 08:52:42 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2011-07-24 12:02:17 -04:00
|
|
|
android:orientation="horizontal">
|
|
|
|
<TextView android:id="@+id/confirm_type_label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Type" />
|
2011-07-20 08:52:42 -04:00
|
|
|
|
2011-07-24 12:02:17 -04:00
|
|
|
<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"
|
2011-07-20 08:52:42 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2011-07-24 12:02:17 -04:00
|
|
|
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>
|
2011-07-20 08:52:42 -04:00
|
|
|
|
2011-07-24 12:02:17 -04:00
|
|
|
<TextView android:id="@+id/server_information"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_below="@id/confirm_second_option"/>
|
2011-07-20 08:52:42 -04:00
|
|
|
</RelativeLayout>
|