1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- Copyright (C) 2010 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 <!-- Exchange server settings. This is a wrapper around the "exchange setup" fragment 18 that adds scrollview & buttons and makes it more compatible with a 2-pane PreferenceActivity 19 such as AccountSettingsXL. --> 20 <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" 21 android:layout_width="match_parent" 22 android:layout_height="match_parent" 23 android:fillViewport="true" 24 > 25 <LinearLayout 26 android:layout_width="match_parent" 27 android:layout_height="wrap_content" 28 android:orientation="vertical" 29 android:paddingTop="@dimen/settings_fragment_padding_top" 30 android:paddingLeft="@dimen/settings_fragment_padding_left" 31 android:paddingRight="@dimen/settings_fragment_padding_right" 32 > 33 34 <!-- Fields entry --> 35 <FrameLayout 36 android:layout_width="match_parent" 37 android:layout_height="wrap_content" 38 > 39 <include 40 layout="@layout/account_setup_exchange_fragment" 41 /> 42 </FrameLayout> 43 44 <!-- This spacer fills the viewport and moves the buttons to the bottom --> 45 <View 46 android:layout_width="match_parent" 47 android:layout_height="0dip" 48 android:layout_weight="1" /> 49 50 <include layout="@layout/account_settings_buttons" /> 51 </LinearLayout> 52 </ScrollView>