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.
|
|
|
|
-->
|
|
|
|
|
2010-11-15 05:16:49 +00:00
|
|
|
<!-- Small-screen holder - see layout-xlarge for large-screen version -->
|
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
|
|
|
|
2010-11-15 05:16:49 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-01-06 19:47:56 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-07-23 00:36:14 +00:00
|
|
|
android:paddingTop="@dimen/setup_fragment_padding_top"
|
|
|
|
android:paddingLeft="@dimen/setup_fragment_padding_left"
|
|
|
|
android:paddingRight="@dimen/setup_fragment_padding_right"
|
2010-11-15 05:16:49 +00:00
|
|
|
>
|
|
|
|
|
2010-12-09 19:05:34 +00:00
|
|
|
<!-- Frame on the left containing the (common) setup info -->
|
|
|
|
<!-- TODO need phone-sized UX here -->
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/common"
|
2010-11-15 05:16:49 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2010-12-09 19:05:34 +00:00
|
|
|
>
|
2014-01-06 19:47:56 +00:00
|
|
|
<fragment
|
|
|
|
android:id="@+id/basics_fragment"
|
|
|
|
class="com.android.email.activity.setup.AccountSetupBasicsFragment"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
2010-12-09 19:05:34 +00:00
|
|
|
</FrameLayout>
|
2010-11-15 05:16:49 +00:00
|
|
|
|
|
|
|
<!-- Buttons below -->
|
2011-10-10 20:48:21 +00:00
|
|
|
<!-- In order to show these buttons above the IME keyboard, we need to special case the to
|
|
|
|
padding to a smaller height. -->
|
2014-02-14 01:06:33 +00:00
|
|
|
<RelativeLayout
|
2011-07-23 00:36:14 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-14 23:29:56 +00:00
|
|
|
android:layout_alignParentBottom="true"
|
2011-10-10 20:48:21 +00:00
|
|
|
android:paddingTop="16dip"
|
2014-02-14 23:29:56 +00:00
|
|
|
android:paddingBottom="16dip">
|
2014-02-14 01:06:33 +00:00
|
|
|
<TextView
|
2011-07-23 00:36:14 +00:00
|
|
|
android:id="@+id/manual_setup"
|
2014-02-14 01:06:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:clickable="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_gravity="center_vertical"
|
2014-02-14 23:29:56 +00:00
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2011-07-23 00:36:14 +00:00
|
|
|
android:text="@string/account_setup_basics_manual_setup_action" />
|
2014-02-14 01:06:33 +00:00
|
|
|
<ImageButton
|
2011-07-23 00:36:14 +00:00
|
|
|
android:id="@+id/next"
|
2014-02-14 01:06:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:src="@drawable/ic_nav_arrow_forward"
|
|
|
|
android:layout_alignParentRight="true"
|
2011-07-23 00:36:14 +00:00
|
|
|
android:text="@string/next_action" />
|
2014-02-14 01:06:33 +00:00
|
|
|
</RelativeLayout>
|
2010-11-15 05:16:49 +00:00
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
2010-03-29 23:46:19 +00:00
|
|
|
</ScrollView>
|