2010-08-10 05:44:41 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2010 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
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
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
|
|
|
<!-- Common data-entry area of initial account setup screen - email, password, default check -->
|
2011-05-25 19:08:09 +00:00
|
|
|
<!-- tablet version -->
|
2014-03-21 20:29:23 +00:00
|
|
|
<LinearLayout
|
2014-02-13 21:12:06 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-03-21 20:29:23 +00:00
|
|
|
android:orientation="vertical"
|
2010-08-10 05:44:41 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-02-13 21:12:06 +00:00
|
|
|
>
|
2014-03-27 21:33:43 +00:00
|
|
|
<ImageView
|
|
|
|
android:layout_width="200dp"
|
|
|
|
android:layout_height="200dp"
|
|
|
|
android:src="@drawable/ic_email_yellow_big"
|
|
|
|
android:contentDescription="@null"
|
|
|
|
android:layout_marginTop="@dimen/setup_basics_logo_margin_top"
|
|
|
|
android:layout_marginBottom="@dimen/setup_basics_logo_margin_bottom"
|
|
|
|
android:layout_gravity="center_horizontal" />
|
2014-02-13 21:12:06 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/instructions"
|
2014-03-21 20:29:23 +00:00
|
|
|
android:layout_width="wrap_content"
|
2014-02-13 21:12:06 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/accounts_welcome"
|
2014-03-21 20:29:23 +00:00
|
|
|
android:textAppearance="@style/account_setup_info_text" />
|
2014-02-13 21:12:06 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:paddingTop="16dip"
|
|
|
|
android:orientation="horizontal"
|
2014-03-31 18:31:26 +00:00
|
|
|
android:layout_width="match_parent"
|
2014-03-21 20:29:23 +00:00
|
|
|
android:layout_height="wrap_content" >
|
2014-02-13 21:12:06 +00:00
|
|
|
<TextView
|
2010-11-15 05:16:49 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:text="@string/account_setup_basics_email_label"
|
2014-03-21 20:29:23 +00:00
|
|
|
style="@style/account_setup_label_text" />
|
2014-02-13 21:12:06 +00:00
|
|
|
<EditText
|
2010-11-15 05:16:49 +00:00
|
|
|
android:id="@+id/account_email"
|
2014-03-21 20:29:23 +00:00
|
|
|
android:contentDescription="@string/account_setup_basics_email_label"
|
2014-03-31 18:31:26 +00:00
|
|
|
android:layout_width="match_parent"
|
2010-11-15 05:16:49 +00:00
|
|
|
android:layout_height="wrap_content"
|
2014-03-21 20:29:23 +00:00
|
|
|
android:inputType="textEmailAddress" />
|
2014-02-13 21:12:06 +00:00
|
|
|
</LinearLayout>
|
2014-03-05 22:08:06 +00:00
|
|
|
<CheckBox
|
2014-02-13 21:12:06 +00:00
|
|
|
android:id="@+id/manual_setup"
|
2014-03-05 22:08:06 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
2014-02-13 21:12:06 +00:00
|
|
|
android:text="@string/account_setup_basics_manual_setup_action" />
|
2014-03-21 20:29:23 +00:00
|
|
|
</LinearLayout>
|