Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2014 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 <LinearLayout
     17     xmlns:android="http://schemas.android.com/apk/res/android"
     18     android:layout_width="match_parent"
     19     android:layout_height="wrap_content"
     20     android:orientation="vertical"
     21     >
     22     <TextView
     23         android:text="@string/account_setup_options_mail_check_frequency_label"
     24         android:layout_height="wrap_content"
     25         android:layout_width="match_parent"
     26         style="@style/account_setup_label_text" />
     27     <Spinner
     28         android:id="@+id/account_check_frequency"
     29         android:layout_height="wrap_content"
     30         android:layout_width="match_parent" />
     31     <TextView
     32         android:id="@+id/account_sync_window_label"
     33         android:layout_height="wrap_content"
     34         android:layout_width="match_parent"
     35         android:text="@string/account_setup_options_mail_window_label"
     36         android:visibility="gone"
     37         style="@style/account_setup_label_text" />
     38     <Spinner
     39         android:id="@+id/account_sync_window"
     40         android:layout_height="wrap_content"
     41         android:layout_width="match_parent"
     42         android:visibility="gone" />
     43     <CheckBox
     44         android:id="@+id/account_notify"
     45         style="@style/account_setup_checkbox"
     46         android:layout_height="wrap_content"
     47         android:layout_width="match_parent"
     48         android:text="@string/account_setup_options_notify_label" />
     49     <CheckBox
     50         android:id="@+id/account_sync_contacts"
     51         style="@style/account_setup_checkbox"
     52         android:layout_height="wrap_content"
     53         android:layout_width="match_parent"
     54         android:text="@string/account_setup_options_sync_contacts_label"
     55         android:visibility="gone" />
     56     <CheckBox
     57         android:id="@+id/account_sync_calendar"
     58         style="@style/account_setup_checkbox"
     59         android:layout_height="wrap_content"
     60         android:layout_width="match_parent"
     61         android:text="@string/account_setup_options_sync_calendar_label"
     62         android:visibility="gone" />
     63     <CheckBox
     64         android:id="@+id/account_sync_email"
     65         style="@style/account_setup_checkbox"
     66         android:layout_height="wrap_content"
     67         android:layout_width="match_parent"
     68         android:text="@string/account_setup_options_sync_email_label" />
     69 
     70     <CheckBox
     71         android:id="@+id/account_background_attachments"
     72         style="@style/account_setup_checkbox"
     73         android:layout_height="wrap_content"
     74         android:layout_width="match_parent"
     75         android:text="@string/account_setup_options_background_attachments_label" />
     76 </LinearLayout>