2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2009-11-13 23:49:06 -05:00
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
2009-11-16 14:33:01 -05:00
|
|
|
android:layout_height="fill_parent"
|
2009-11-13 23:49:06 -05:00
|
|
|
android:layout_width="fill_parent">
|
|
|
|
|
2008-12-14 23:59:03 -05:00
|
|
|
<ScrollView
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
2013-03-07 21:17:22 -05:00
|
|
|
android:layout_height="0dp"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_marginBottom="54dip"
|
|
|
|
android:fadingEdge="none"
|
2009-11-22 19:23:34 -05:00
|
|
|
android:padding="6dip"
|
2008-12-14 23:59:03 -05:00
|
|
|
android:scrollbarStyle="outsideInset">
|
|
|
|
<LinearLayout
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
2008-12-14 23:59:03 -05:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:text="@string/account_setup_options_mail_check_frequency_label"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2009-04-19 05:10:32 -04:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2009-11-16 14:33:01 -05:00
|
|
|
/>
|
2008-12-14 23:59:03 -05:00
|
|
|
<Spinner
|
|
|
|
android:id="@+id/account_check_frequency"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_setup_options_mail_check_frequency_label" />
|
2009-11-16 14:33:01 -05:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/account_enable_push"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:text="@string/account_setup_options_enable_push_label"
|
|
|
|
android:summary="@string/account_setup_options_enable_push_summary"
|
|
|
|
/>
|
2008-12-14 23:59:03 -05:00
|
|
|
<TextView
|
|
|
|
android:text="@string/account_setup_options_mail_display_count_label"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/account_display_count"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_setup_options_mail_display_count_label" />
|
2008-12-14 23:59:03 -05:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/account_notify"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
2009-04-19 05:10:32 -04:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2008-12-14 23:59:03 -05:00
|
|
|
android:text="@string/account_setup_options_notify_label" />
|
2009-01-18 11:42:55 -05:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/account_notify_sync"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
2009-04-19 05:10:32 -04:00
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
|
2009-01-18 11:42:55 -05:00
|
|
|
android:text="@string/account_setup_options_notify_sync_label" />
|
2008-12-14 23:59:03 -05:00
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
</LinearLayout>
|
2009-11-22 19:23:34 -05:00
|
|
|
</ScrollView>
|
|
|
|
<include layout="@layout/wizard_next" />
|
2009-11-13 23:49:06 -05:00
|
|
|
</LinearLayout>
|