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-10 05:44:41 +00:00
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2010-08-10 05:44:41 +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.
|
|
|
|
-->
|
|
|
|
|
2009-08-21 23:24:16 +00:00
|
|
|
<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
|
|
|
|
|
|
|
<LinearLayout
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2010-03-16 21:00:28 +00:00
|
|
|
android:layout_height="wrap_content"
|
2009-08-21 23:24:16 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2010-08-10 05:44:41 +00:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/setup_basics_fragment"
|
2010-08-16 18:00:53 +00:00
|
|
|
class="com.android.email.activity.setup.AccountSetupBasicsFragment"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
2009-08-21 23:24:16 +00:00
|
|
|
android:layout_weight="1"
|
2010-08-10 05:44:41 +00:00
|
|
|
/>
|
2009-08-21 23:24:16 +00:00
|
|
|
|
|
|
|
<RelativeLayout
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2009-08-21 23:24:16 +00:00
|
|
|
android:layout_height="54dip"
|
|
|
|
android:background="@android:drawable/bottom_bar" >
|
|
|
|
<Button
|
|
|
|
android:id="@+id/manual_setup"
|
|
|
|
android:text="@string/account_setup_basics_manual_setup_action"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:minWidth="@dimen/button_minWidth"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
<Button
|
|
|
|
android:id="@+id/next"
|
|
|
|
android:text="@string/next_action"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:minWidth="@dimen/button_minWidth"
|
|
|
|
android:drawableRight="@drawable/button_indicator_next"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|
2010-03-29 23:46:19 +00:00
|
|
|
</ScrollView>
|