summaryrefslogtreecommitdiffstats
path: root/res/layout-w600dp/account_setup_options_fragment.xml
blob: e92b2eb8cc9ffb3dfbba9776072bd703382baea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?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>