replicant-packages_apps_Email/res/layout-w600dp/account_setup_options_fragm...

118 lines
4.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2011 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- Common data-entry area of account options setup screen - check freq, options, etc. -->
<!-- tablet version -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>
<!-- Spinners in a table to line everything up nicely -->
<android.support.v7.widget.GridLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:columnCount="2" >
<TextView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
app:layout_gravity="center_vertical"
android:layout_margin="8dp"
android:text="@string/account_setup_options_mail_check_frequency_label"
style="@style/account_setup_label_text" />
<Spinner
android:id="@+id/account_check_frequency"
android:layout_height="wrap_content"
app:layout_gravity="center_vertical|fill_horizontal"/>
<!-- 2nd row is shown only for EAS accounts -->
<TextView
android:id="@+id/account_sync_window_label"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
app:layout_gravity="center_vertical"
android:layout_margin="8dp"
android:text="@string/account_setup_options_mail_window_label"
android:visibility="gone"
style="@style/account_setup_label_text" />
<Spinner
android:id="@+id/account_sync_window"
android:layout_height="wrap_content"
app:layout_gravity="center_vertical|fill_horizontal"
android:visibility="gone" />
</android.support.v7.widget.GridLayout>
<CheckBox
android:id="@+id/account_notify"
style="@style/account_setup_checkbox"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/account_setup_options_notify_label" />
<!-- Contacts sync - hide unless EAS -->
<View
android:id="@+id/account_sync_contacts_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/account_setup_divider_color"
android:visibility="gone" />
<CheckBox
android:id="@+id/account_sync_contacts"
style="@style/account_setup_checkbox"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/account_setup_options_sync_contacts_label"
android:visibility="gone" />
<!-- Calendar sync - hide unless EAS -->
<View
android:id="@+id/account_sync_calendar_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/account_setup_divider_color"
android:visibility="gone" />
<CheckBox
android:id="@+id/account_sync_calendar"
style="@style/account_setup_checkbox"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/account_setup_options_sync_calendar_label"
android:visibility="gone" />
<!-- Email sync - always show -->
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/account_setup_divider_color" />
<CheckBox
android:id="@+id/account_sync_email"
style="@style/account_setup_checkbox"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/account_setup_options_sync_email_label" />
<!-- Auto-download attachments - always show, unless POP3 -->
<View
android:id="@+id/account_background_attachments_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/account_setup_divider_color" />
<CheckBox
android:id="@+id/account_background_attachments"
style="@style/account_setup_checkbox"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="@string/account_setup_options_background_attachments_label" />
</LinearLayout>