2008-10-28 01:04:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-11-14 00:28:03 +00:00
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
2013-03-08 02:17:22 +00:00
|
|
|
android:layout_height="fill_parent"
|
2009-11-14 00:28:03 +00:00
|
|
|
android:layout_width="fill_parent">
|
2013-03-08 02:17:22 +00:00
|
|
|
|
2014-07-13 05:09:23 +00:00
|
|
|
<ScrollView
|
2008-10-28 01:04:44 +00:00
|
|
|
android:layout_width="fill_parent"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:padding="6dip"
|
|
|
|
android:fadingEdge="none"
|
|
|
|
android:scrollbarStyle="outsideInset">
|
|
|
|
|
2008-10-28 01:04:44 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2008-10-28 01:04:44 +00:00
|
|
|
<TextView
|
2014-07-13 05:09:23 +00:00
|
|
|
android:text="@string/account_setup_outgoing_smtp_server_label"
|
2008-10-28 01:04:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
2014-07-13 05:09:23 +00:00
|
|
|
|
2008-10-28 01:04:44 +00:00
|
|
|
<EditText
|
2014-07-13 05:09:23 +00:00
|
|
|
android:id="@+id/account_server"
|
2008-10-28 01:04:44 +00:00
|
|
|
android:singleLine="true"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:inputType="textUri"
|
2008-10-28 01:04:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 12:18:12 +00:00
|
|
|
android:layout_width="fill_parent"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:contentDescription="@string/account_setup_outgoing_smtp_server_label" />
|
|
|
|
|
2008-10-28 01:04:44 +00:00
|
|
|
<TextView
|
2014-07-13 05:09:23 +00:00
|
|
|
android:text="@string/account_setup_outgoing_security_label"
|
2008-10-28 01:04:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
2014-07-13 05:09:23 +00:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/account_security_type"
|
2008-10-28 01:04:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 12:18:12 +00:00
|
|
|
android:layout_width="fill_parent"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:contentDescription="@string/account_setup_outgoing_security_label" />
|
|
|
|
|
2014-05-25 20:45:14 +00:00
|
|
|
<TextView
|
2014-07-13 05:09:23 +00:00
|
|
|
android:text="@string/account_setup_outgoing_port_label"
|
2014-05-25 20:45:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_port"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:inputType="number"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_setup_outgoing_port_label" />
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/account_require_login"
|
|
|
|
android:layout_width="fill_parent"
|
2014-05-25 20:45:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:text="@string/account_setup_outgoing_require_login_label" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/account_require_login_settings"
|
2014-05-25 20:45:14 +00:00
|
|
|
android:layout_width="fill_parent"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<TextView
|
2014-07-13 19:00:49 +00:00
|
|
|
android:text="@string/account_setup_outgoing_username_label"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
|
2014-07-13 19:00:49 +00:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_username"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:inputType="textEmailAddress"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
2014-07-13 19:00:49 +00:00
|
|
|
android:contentDescription="@string/account_setup_outgoing_username_label" />
|
2014-07-13 05:09:23 +00:00
|
|
|
|
|
|
|
<TextView
|
2014-07-13 19:00:49 +00:00
|
|
|
android:text="@string/account_setup_outgoing_authentication_label"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
|
2014-07-13 19:00:49 +00:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/account_auth_type"
|
2014-07-13 05:09:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
2014-07-13 19:00:49 +00:00
|
|
|
android:contentDescription="@string/account_setup_outgoing_authentication_label" />
|
2014-07-13 05:09:23 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_password_label"
|
|
|
|
android:text="@string/account_setup_outgoing_password_label"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_password"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:inputType="textPassword"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_setup_outgoing_password_label" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_client_certificate_label"
|
|
|
|
android:text="@string/account_setup_incoming_client_certificate_label"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<com.fsck.k9.view.ClientCertificateSpinner
|
|
|
|
android:id="@+id/account_client_certificate_spinner"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:visibility="gone" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1" />
|
2008-10-28 01:04:44 +00:00
|
|
|
</LinearLayout>
|
2013-03-08 02:17:22 +00:00
|
|
|
</ScrollView>
|
2014-07-13 05:09:23 +00:00
|
|
|
|
2009-11-23 00:23:34 +00:00
|
|
|
<include layout="@layout/wizard_next" />
|
2014-07-13 05:09:23 +00:00
|
|
|
|
2009-11-14 00:28:03 +00:00
|
|
|
</LinearLayout>
|