1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2008 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 17<ScrollView 18 xmlns:android="http://schemas.android.com/apk/res/android" 19 android:layout_width="fill_parent" 20 android:layout_height="fill_parent" 21 android:fillViewport="true" 22 android:scrollbarStyle="outsideInset" > 23 24 <LinearLayout 25 android:layout_width="fill_parent" 26 android:layout_height="fill_parent" 27 android:orientation="vertical" > 28 29 <LinearLayout 30 android:layout_width="fill_parent" 31 android:layout_height="wrap_content" 32 android:layout_weight="1" 33 android:orientation="vertical" > 34 <TextView 35 android:text="@string/account_setup_options_mail_check_frequency_label" 36 android:layout_height="wrap_content" 37 android:layout_width="fill_parent" 38 android:textAppearance="?android:attr/textAppearanceSmall" 39 android:textColor="?android:attr/textColorPrimary" /> 40 <Spinner 41 android:id="@+id/account_check_frequency" 42 android:layout_height="wrap_content" 43 android:layout_width="fill_parent" /> 44 <TextView 45 android:id="@+id/account_sync_window_label" 46 android:text="@string/account_setup_options_mail_window_label" 47 android:visibility="gone" 48 android:layout_height="wrap_content" 49 android:layout_width="fill_parent" 50 android:textAppearance="?android:attr/textAppearanceSmall" 51 android:textColor="?android:attr/textColorPrimary" /> 52 <Spinner 53 android:id="@+id/account_sync_window" 54 android:visibility="gone" 55 android:layout_height="wrap_content" 56 android:layout_width="fill_parent" /> 57 <CheckBox 58 android:id="@+id/account_default" 59 android:layout_height="wrap_content" 60 android:layout_width="fill_parent" 61 android:text="@string/account_setup_options_default_label" /> 62 <CheckBox 63 android:id="@+id/account_notify" 64 android:layout_height="wrap_content" 65 android:layout_width="fill_parent" 66 android:text="@string/account_setup_options_notify_label" /> 67 <CheckBox 68 android:id="@+id/account_sync_contacts" 69 android:layout_height="wrap_content" 70 android:layout_width="fill_parent" 71 android:text="@string/account_setup_options_sync_contacts_label" 72 android:visibility="gone" /> 73 </LinearLayout> 74 75 <RelativeLayout 76 android:layout_width="fill_parent" 77 android:layout_height="54dip" 78 android:background="@android:drawable/bottom_bar"> 79 <Button 80 android:id="@+id/next" 81 android:text="@string/next_action" 82 android:layout_height="wrap_content" 83 android:layout_width="wrap_content" 84 android:minWidth="@dimen/button_minWidth" 85 android:drawableRight="@drawable/button_indicator_next" 86 android:layout_alignParentRight="true" 87 android:layout_centerVertical="true" /> 88 </RelativeLayout> 89 </LinearLayout> 90</ScrollView> 91