• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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<!-- Incoming server settings.  This is a wrapper around the "incoming 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    <RelativeLayout
26        android:layout_width="match_parent"
27        android:layout_height="wrap_content"
28        android:paddingTop="@dimen/settings_fragment_padding_top"
29        android:paddingLeft="@dimen/settings_fragment_padding_left"
30        android:paddingRight="@dimen/settings_fragment_padding_right"
31        >
32
33        <!-- Fields entry -->
34        <FrameLayout
35            android:layout_width="match_parent"
36            android:layout_height="wrap_content"
37            android:layout_alignParentTop="true"
38            android:id="@+id/fragment_wrapper"
39            >
40            <include
41                layout="@layout/account_setup_incoming_fragment"
42                />
43        </FrameLayout>
44
45        <RelativeLayout
46            android:id="@+id/buttons_wrapper"
47            android:layout_below="@id/fragment_wrapper"
48            android:layout_width="match_parent"
49            android:layout_height="wrap_content">
50
51            <include layout="@layout/account_settings_buttons" />
52
53        </RelativeLayout>
54    </RelativeLayout>
55</ScrollView>