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 21:27:13 +00:00
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2010-08-10 21:27:13 +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
|
|
|
|
2010-11-17 00:40:34 +00:00
|
|
|
<RelativeLayout
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2010-11-17 00:40:34 +00:00
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/setup_fragment"
|
|
|
|
class="com.android.email.activity.setup.AccountSetupIncomingFragment"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- Buttons below -->
|
|
|
|
<!-- TODO - quick placeholder - phone UX still TBD -->
|
|
|
|
<Button
|
|
|
|
android:id="@+id/previous"
|
|
|
|
android:layout_below="@+id/setup_fragment"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_marginTop="16dip"
|
|
|
|
style="@style/accountSetupButton"
|
|
|
|
android:text="@string/previous_action" />
|
|
|
|
<Button
|
|
|
|
android:id="@+id/next"
|
|
|
|
android:layout_below="@+id/setup_fragment"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginTop="16dip"
|
|
|
|
style="@style/accountSetupButton"
|
|
|
|
android:text="@string/next_action" />
|
|
|
|
</RelativeLayout>
|
2009-03-04 03:32:22 +00:00
|
|
|
</ScrollView>
|