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-11-15 07:47:52 +00:00
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2010-11-15 07:47:52 +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"
|
2010-09-09 06:27:05 +00:00
|
|
|
android:layout_weight="1"
|
2011-07-23 00:36:14 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="@dimen/setup_fragment_padding_top"
|
|
|
|
android:paddingLeft="@dimen/setup_fragment_padding_left"
|
|
|
|
android:paddingRight="@dimen/setup_fragment_padding_right" >
|
2010-09-09 06:27:05 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="match_parent"
|
2011-06-23 21:51:19 +00:00
|
|
|
android:text="@string/account_setup_names_headline"
|
2010-09-09 06:27:05 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<TextView
|
|
|
|
android:layout_height="wrap_content"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-06-23 21:51:19 +00:00
|
|
|
android:text="@string/account_setup_names_account_name_label"
|
2010-09-09 06:27:05 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_description"
|
|
|
|
android:layout_height="wrap_content"
|
2011-06-23 21:51:19 +00:00
|
|
|
android:layout_width="match_parent"
|
2012-11-21 19:09:12 +00:00
|
|
|
android:hint="@string/account_setup_names_account_name_label"
|
2011-10-05 23:14:44 +00:00
|
|
|
android:inputType="textCapWords|textNoSuggestions"
|
2011-09-27 18:29:55 +00:00
|
|
|
android:imeOptions="actionNext" />
|
2010-09-09 06:27:05 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_name_label"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-06-23 21:51:19 +00:00
|
|
|
android:text="@string/account_setup_names_user_name_label"
|
2010-09-09 06:27:05 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_name"
|
|
|
|
android:layout_height="wrap_content"
|
2011-06-23 21:51:19 +00:00
|
|
|
android:layout_width="match_parent"
|
2012-11-21 19:09:12 +00:00
|
|
|
android:hint="@string/account_setup_names_user_name_label"
|
2011-06-23 21:51:19 +00:00
|
|
|
android:inputType="textPersonName"
|
|
|
|
android:imeOptions="actionDone" />
|
2010-11-15 07:47:52 +00:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/next"
|
|
|
|
android:layout_marginTop="16dip"
|
2011-08-10 21:10:15 +00:00
|
|
|
android:layout_gravity="right"
|
2010-11-15 07:47:52 +00:00
|
|
|
style="@style/accountSetupButton"
|
|
|
|
android:text="@string/next_action" />
|
2009-08-21 23:24:16 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|