2009-06-08 23:11:35 -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"
|
|
|
|
|
|
|
|
android:scrollbarStyle="outsideInset">
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:text="@string/edit_identity_description_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/description"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:hint="@string/edit_identity_description_hint"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:text="@string/edit_identity_name_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/name"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:hint="@string/edit_identity_name_hint"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:text="@string/edit_identity_email_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/email"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:hint="@string/edit_identity_email_hint"
|
|
|
|
/>
|
2010-06-20 08:48:22 -04:00
|
|
|
<TextView
|
|
|
|
android:text="@string/edit_identity_reply_to_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/reply_to"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:hint="@string/edit_identity_reply_to_hint"
|
|
|
|
/>
|
2009-06-08 23:11:35 -04:00
|
|
|
<!--
|
|
|
|
<TextView
|
|
|
|
android:text="@string/edit_identity_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"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent" />
|
|
|
|
-->
|
2010-02-08 12:47:00 -05:00
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/signature_use"
|
2009-06-08 23:11:35 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
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/signature_layout"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:text="@string/edit_identity_signature_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/signature"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:hint="@string/edit_identity_signature_hint"/>
|
|
|
|
</LinearLayout>
|
2009-06-08 23:11:35 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|