2009-03-04 03:32:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2008 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
|
2010-08-11 00:45:57 +00:00
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2010-08-11 00:45:57 +00:00
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
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.
|
|
|
|
-->
|
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2010-03-29 23:46:19 +00:00
|
|
|
android:fillViewport="true" >
|
2009-08-21 23:24:16 +00:00
|
|
|
|
2011-07-23 00:36:14 +00:00
|
|
|
<LinearLayout
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-07-23 00:36:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="@dimen/setup_fragment_padding_top"
|
|
|
|
android:paddingLeft="@dimen/setup_fragment_padding_left"
|
|
|
|
android:paddingRight="@dimen/setup_fragment_padding_right" >
|
2010-11-17 00:40:34 +00:00
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/setup_fragment"
|
|
|
|
class="com.android.email.activity.setup.AccountSetupOutgoingFragment"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_width="match_parent"
|
2011-07-23 00:36:14 +00:00
|
|
|
android:layout_height="0dip"
|
2010-11-17 00:40:34 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
/>
|
|
|
|
|
2011-07-23 00:36:14 +00:00
|
|
|
<include layout="@layout/account_setup_buttons"
|
|
|
|
android:layout_below="@+id/setup_fragment" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2009-03-04 03:32:22 +00:00
|
|
|
</ScrollView>
|