2008-10-29 23:24:48 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2009-11-16 19:50:59 -05:00
|
|
|
android:fadingEdge="none"
|
2008-10-29 23:24:48 -04:00
|
|
|
android:scrollbarStyle="outsideInset">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
2008-10-30 22:01:25 -04:00
|
|
|
android:text="@string/account_settings_name_label"
|
2008-10-29 23:24:48 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
2008-10-30 22:01:25 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_name"
|
|
|
|
android:singleLine="true"
|
2010-01-13 20:57:59 -05:00
|
|
|
android:inputType="textPersonName"
|
2008-10-30 22:01:25 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:contentDescription="@string/account_settings_name_label"
|
2008-10-30 22:01:25 -04:00
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:text="@string/account_settings_email_label"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
/>
|
2008-10-29 23:24:48 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_email"
|
|
|
|
android:singleLine="true"
|
2010-01-13 20:57:59 -05:00
|
|
|
android:inputType="textEmailAddress"
|
2008-10-29 23:24:48 -04:00
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_settings_email_label"
|
2008-10-30 22:01:25 -04:00
|
|
|
/>
|
2008-10-29 23:24:48 -04:00
|
|
|
<TextView
|
|
|
|
android:text="@string/account_settings_always_bcc_label"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_always_bcc"
|
|
|
|
android:singleLine="true"
|
2010-01-13 20:57:59 -05:00
|
|
|
android:inputType="textEmailAddress"
|
2008-10-29 23:24:48 -04:00
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_settings_always_bcc_label" />
|
2010-02-08 12:47:00 -05:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/account_signature_use"
|
2008-10-29 23:24:48 -04:00
|
|
|
android:layout_width="fill_parent"
|
2009-05-17 02:02:02 -04:00
|
|
|
android:layout_height="wrap_content"
|
2010-02-08 12:47:00 -05:00
|
|
|
android:text="@string/account_settings_signature_use_label" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/account_signature_layout"
|
2009-05-17 02:02:02 -04:00
|
|
|
android:layout_width="fill_parent"
|
2010-02-08 12:47:00 -05:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:text="@string/account_settings_signature_label"
|
2009-05-17 02:02:02 -04:00
|
|
|
android:layout_height="wrap_content"
|
2010-02-08 12:47:00 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/account_signature"
|
|
|
|
android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:contentDescription="@string/account_settings_signature_label" />
|
2010-02-08 12:47:00 -05:00
|
|
|
<TextView
|
|
|
|
android:text="@string/account_settings_signature__location_label"
|
2009-05-17 02:02:02 -04:00
|
|
|
android:layout_height="wrap_content"
|
2010-02-08 12:47:00 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/account_signature_location"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/account_signature_location_before_quoted_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:text="@string/account_settings_signature__location_before_quoted_text"
|
|
|
|
android:contentDescription="@string/account_settings_signature__location_label" />
|
2010-02-08 12:47:00 -05:00
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/account_signature_location_after_quoted_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2010-07-08 08:18:12 -04:00
|
|
|
android:text="@string/account_settings_signature__location_after_quoted_text"
|
|
|
|
android:contentDescription="@string/account_settings_signature__location_label" />
|
2010-02-08 12:47:00 -05:00
|
|
|
</RadioGroup>
|
|
|
|
</LinearLayout>
|
2008-10-29 23:24:48 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|