20adb68b94
Also address some RTL issues b/10784160 b/13544189 b/13585832 Change-Id: I5c86497940ce4b972e0ee9189418f120391a8833
55 lines
2.3 KiB
XML
55 lines
2.3 KiB
XML
<?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.
|
|
-->
|
|
|
|
<!-- Common data-entry area of initial account setup screen - email, password, default check -->
|
|
<!-- tablet version -->
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
>
|
|
<TextView
|
|
android:id="@+id/instructions"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/accounts_welcome"
|
|
android:textAppearance="@style/account_setup_info_text" />
|
|
<LinearLayout
|
|
android:paddingTop="16dip"
|
|
android:orientation="horizontal"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" >
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginRight="16dip"
|
|
android:text="@string/account_setup_basics_email_label"
|
|
style="@style/account_setup_label_text" />
|
|
<EditText
|
|
android:id="@+id/account_email"
|
|
android:contentDescription="@string/account_setup_basics_email_label"
|
|
android:layout_width="@dimen/setup_credentials_input_width"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textEmailAddress" />
|
|
</LinearLayout>
|
|
<CheckBox
|
|
android:id="@+id/manual_setup"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:text="@string/account_setup_basics_manual_setup_action" />
|
|
</LinearLayout>
|