2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-08-27 05:48:49 -04:00
|
|
|
xmlns:custom="http://schemas.android.com/apk/res-auto"
|
2009-11-22 19:23:34 -05:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_height="fill_parent"
|
2012-09-24 12:34:22 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
>
|
2009-11-22 19:23:34 -05:00
|
|
|
|
|
|
|
<ScrollView
|
2012-09-24 12:34:22 -04:00
|
|
|
android:layout_width="wrap_content"
|
2013-03-07 21:17:22 -05:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
2009-04-19 05:10:32 -04:00
|
|
|
android:padding="6dip"
|
2009-11-22 19:23:34 -05:00
|
|
|
android:fadingEdge="none"
|
|
|
|
android:scrollbarStyle="outsideInset">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2012-09-24 12:34:22 -04:00
|
|
|
android:layout_gravity="center_horizontal|center_vertical"
|
2009-11-22 19:23:34 -05:00
|
|
|
android:orientation="vertical">
|
2008-10-27 21:04:44 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_email"
|
|
|
|
android:hint="@string/account_setup_basics_email_hint"
|
|
|
|
android:singleLine="true"
|
2010-01-13 20:57:59 -05:00
|
|
|
android:inputType="textEmailAddress"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
/>
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_password"
|
2010-01-13 20:57:59 -05:00
|
|
|
android:inputType="textPassword"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:hint="@string/account_setup_basics_password_hint"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:nextFocusDown="@+id/next"
|
|
|
|
/>
|
2014-08-18 07:06:25 -04:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/show_password"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
2014-08-18 18:44:34 -04:00
|
|
|
android:text="@string/account_setup_basics_show_password"
|
2014-08-18 07:06:25 -04:00
|
|
|
/>
|
2014-05-25 16:45:14 -04:00
|
|
|
<com.fsck.k9.view.ClientCertificateSpinner
|
|
|
|
android:id="@+id/account_client_certificate_spinner"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
2014-08-27 05:48:49 -04:00
|
|
|
<com.fsck.k9.view.FoldableLinearLayout
|
2014-08-28 17:48:37 -04:00
|
|
|
android:id="@+id/foldable_advanced_options"
|
2014-08-27 05:48:49 -04:00
|
|
|
android:layout_width="match_parent"
|
2014-05-25 16:45:14 -04:00
|
|
|
android:layout_height="wrap_content"
|
2014-08-28 21:43:31 -04:00
|
|
|
android:layout_marginTop="16dp"
|
2014-08-27 05:48:49 -04:00
|
|
|
custom:foldedLabel="@string/client_certificate_advanced_options"
|
|
|
|
custom:unFoldedLabel="@string/client_certificate_advanced_options">
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/account_client_certificate"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/account_setup_basics_client_certificate" />
|
|
|
|
</com.fsck.k9.view.FoldableLinearLayout>
|
2008-10-27 21:04:44 -04:00
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
2009-11-12 19:38:26 -05:00
|
|
|
android:layout_height="0dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_weight="1"
|
|
|
|
/>
|
2009-11-22 19:23:34 -05:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
2013-03-07 21:17:22 -05:00
|
|
|
<include layout="@layout/wizard_setup"/>
|
2008-10-27 21:04:44 -04:00
|
|
|
</LinearLayout>
|