2008-10-27 21:04:44 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-07-27 08:10:09 -04:00
|
|
|
android:layout_width="fill_parent"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:layout_height="fill_parent"
|
2012-12-13 01:27:51 -05:00
|
|
|
android:orientation="vertical">
|
2010-05-01 18:42:32 -04:00
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:scrollbarStyle="insideOverlay"
|
|
|
|
android:fillViewport="true">
|
2010-05-01 18:42:32 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-24 17:56:51 -04:00
|
|
|
android:layout_marginBottom="4dp"
|
2012-03-22 17:17:10 -04:00
|
|
|
android:paddingTop="6dp"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:orientation="vertical"
|
2012-04-02 21:41:44 -04:00
|
|
|
android:background="#45bcbcbc">
|
2010-05-01 18:42:32 -04:00
|
|
|
|
2012-03-24 17:51:33 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/identity"
|
2009-06-08 23:11:35 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-04-13 14:21:56 -04:00
|
|
|
android:gravity="center_vertical"
|
2012-03-24 17:51:33 -04:00
|
|
|
android:layout_marginLeft="6dip"
|
|
|
|
android:layout_marginRight="6dip"/>
|
2012-03-22 17:17:10 -04:00
|
|
|
|
2011-03-22 03:06:11 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/to_wrapper"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2011-03-22 03:06:11 -04:00
|
|
|
android:baselineAligned="true"
|
2013-02-09 16:27:21 -05:00
|
|
|
android:gravity="bottom"
|
2012-03-22 16:20:51 -04:00
|
|
|
android:layout_marginLeft="6dip"
|
|
|
|
android:layout_marginRight="6dip"
|
2011-03-22 03:06:11 -04:00
|
|
|
android:layout_width="fill_parent">
|
2012-03-22 16:25:57 -04:00
|
|
|
|
2012-03-22 16:20:51 -04:00
|
|
|
<MultiAutoCompleteTextView
|
|
|
|
android:id="@+id/to"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:inputType="textEmailAddress|textMultiLine"
|
|
|
|
android:imeOptions="actionNext"
|
|
|
|
android:hint="@string/message_compose_to_hint"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_width="0dp"
|
2012-03-22 16:20:51 -04:00
|
|
|
android:layout_marginRight="6dip"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_weight="1"/>
|
2012-03-22 16:25:57 -04:00
|
|
|
|
2012-03-22 16:20:51 -04:00
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/add_to"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:contentDescription="@string/message_compose_description_add_to"
|
2013-03-08 12:00:41 -05:00
|
|
|
android:src="?attr/messageComposeAddContactImage"
|
2013-02-09 16:27:21 -05:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_width="wrap_content"
|
2013-02-09 16:27:21 -05:00
|
|
|
android:padding="8dip"
|
2012-03-22 16:25:57 -04:00
|
|
|
android:layout_marginTop="1dip"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2011-03-22 03:06:11 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/cc_wrapper"
|
|
|
|
android:visibility="gone"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2011-03-22 03:06:11 -04:00
|
|
|
android:baselineAligned="true"
|
2013-02-09 16:27:21 -05:00
|
|
|
android:gravity="bottom"
|
2012-03-22 17:17:10 -04:00
|
|
|
android:layout_marginLeft="6dip"
|
|
|
|
android:layout_marginRight="6dip"
|
2011-03-22 03:06:11 -04:00
|
|
|
android:layout_width="fill_parent">
|
2012-03-22 16:25:57 -04:00
|
|
|
|
2012-03-22 16:20:51 -04:00
|
|
|
<MultiAutoCompleteTextView
|
|
|
|
android:id="@+id/cc"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_width="0dp"
|
2012-03-22 16:20:51 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_weight="1"
|
2012-03-22 16:20:51 -04:00
|
|
|
android:layout_marginRight="6dip"
|
|
|
|
android:inputType="textEmailAddress|textMultiLine"
|
|
|
|
android:imeOptions="actionNext"
|
|
|
|
android:hint="@string/message_compose_cc_hint"
|
2012-03-22 16:25:57 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/add_cc"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:contentDescription="@string/message_compose_description_add_cc"
|
2013-03-08 12:00:41 -05:00
|
|
|
android:src="?attr/messageComposeAddContactImage"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_width="wrap_content"
|
2013-02-09 16:27:21 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="8dip"
|
2012-03-22 16:25:57 -04:00
|
|
|
android:layout_marginTop="1dip"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2011-03-22 03:06:11 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/bcc_wrapper"
|
|
|
|
android:visibility="gone"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2011-03-22 03:06:11 -04:00
|
|
|
android:baselineAligned="true"
|
2013-02-09 16:27:21 -05:00
|
|
|
android:gravity="bottom"
|
2012-03-22 16:20:51 -04:00
|
|
|
android:layout_marginLeft="6dip"
|
|
|
|
android:layout_marginRight="6dip"
|
2011-03-22 03:06:11 -04:00
|
|
|
android:layout_width="fill_parent">
|
|
|
|
|
2012-03-22 16:20:51 -04:00
|
|
|
<MultiAutoCompleteTextView
|
|
|
|
android:id="@+id/bcc"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_width="0dp"
|
2012-03-22 16:20:51 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="6dip"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_weight="1"
|
2012-03-22 16:20:51 -04:00
|
|
|
android:inputType="textEmailAddress|textMultiLine"
|
|
|
|
android:imeOptions="actionNext"
|
|
|
|
android:hint="@string/message_compose_bcc_hint"
|
2012-03-22 16:25:57 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
|
|
|
|
2012-03-22 16:20:51 -04:00
|
|
|
<ImageButton
|
2012-03-22 18:37:03 -04:00
|
|
|
android:id="@+id/add_bcc"
|
|
|
|
android:contentDescription="@string/message_compose_description_add_bcc"
|
2012-03-22 16:20:51 -04:00
|
|
|
android:layout_marginTop="1dip"
|
2013-02-09 16:27:21 -05:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_width="wrap_content"
|
2013-02-09 16:27:21 -05:00
|
|
|
android:padding="8dip"
|
2013-03-08 12:00:41 -05:00
|
|
|
android:src="?attr/messageComposeAddContactImage"/>
|
2012-03-22 16:25:57 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|
2010-05-01 18:42:32 -04:00
|
|
|
|
2010-07-27 08:10:09 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/layout_encrypt"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:paddingRight="6dip">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_gravity="center_vertical"
|
2010-08-05 08:08:13 -04:00
|
|
|
android:layout_width="wrap_content"
|
2010-07-27 08:10:09 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:text="@string/btn_crypto_sign"
|
|
|
|
android:id="@+id/cb_crypto_signature"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:paddingRight="2dip">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/userId"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/userIdRest"
|
|
|
|
android:textSize="10sp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:text="@string/btn_encrypt"
|
|
|
|
android:id="@+id/cb_encrypt"
|
|
|
|
android:layout_gravity="center_vertical"
|
2010-08-05 08:08:13 -04:00
|
|
|
android:layout_width="wrap_content"
|
2010-07-27 08:10:09 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2010-05-01 18:42:32 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/subject"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2009-11-12 19:38:26 -05:00
|
|
|
android:layout_marginLeft="6dip"
|
|
|
|
android:layout_marginRight="6dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:hint="@string/message_compose_subject_hint"
|
2010-07-27 08:10:09 -04:00
|
|
|
android:inputType="textEmailSubject|textAutoCorrect|textCapSentences|textImeMultiLine"
|
2009-09-10 17:51:26 -04:00
|
|
|
android:imeOptions="actionNext"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
<!--
|
|
|
|
Empty container for storing attachments. We'll stick
|
|
|
|
instances of message_compose_attachment.xml in here.
|
|
|
|
-->
|
2010-05-01 18:42:32 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/attachments"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
2010-05-01 18:42:32 -04:00
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
2009-11-12 19:38:26 -05:00
|
|
|
android:layout_height="1dip"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:background="@drawable/divider_horizontal_email" />
|
2010-05-01 18:42:32 -04:00
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
</LinearLayout>
|
2010-05-01 18:42:32 -04:00
|
|
|
|
2012-03-26 01:29:10 -04:00
|
|
|
<!-- We have to use "wrap_content" (not "0dip") for "layout_height", otherwise the
|
|
|
|
EditText won't properly grow in height while the user is typing the message -->
|
2010-05-01 18:42:32 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/message_content"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
2012-03-26 01:29:10 -04:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_weight="1"
|
2013-04-13 14:21:56 -04:00
|
|
|
android:gravity="top"
|
2010-07-27 08:10:09 -04:00
|
|
|
android:hint="@string/message_compose_content_hint"
|
2009-09-10 17:51:26 -04:00
|
|
|
android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
|
|
|
|
android:imeOptions="actionDone|flagNoEnterAction"
|
2010-07-27 08:10:09 -04:00
|
|
|
android:minLines="3"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/upper_signature"
|
2009-06-08 23:11:35 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-04-13 14:21:56 -04:00
|
|
|
android:gravity="top"
|
2009-06-08 23:11:35 -04:00
|
|
|
android:editable="false"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:minLines="0"
|
|
|
|
android:autoText="true"
|
|
|
|
android:capitalize="sentences"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:hint="@string/message_compose_signature_hint"
|
|
|
|
android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2011-05-17 11:00:16 -04:00
|
|
|
<Button
|
2011-05-10 11:54:17 -04:00
|
|
|
android:id="@+id/quoted_text_show"
|
2011-05-17 11:00:16 -04:00
|
|
|
android:text="@string/message_compose_show_quoted_text_action"
|
|
|
|
android:textSize="16dip"
|
|
|
|
android:padding="0dip"
|
2011-05-10 11:54:17 -04:00
|
|
|
android:layout_gravity="right"
|
|
|
|
android:layout_height="wrap_content"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:layout_width="match_parent"/>
|
2011-05-10 11:54:17 -04:00
|
|
|
|
2010-05-01 18:42:32 -04:00
|
|
|
<!-- Quoted text bar -->
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/quoted_text_bar"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="fill_parent"
|
2011-01-12 18:48:28 -05:00
|
|
|
android:layout_height="wrap_content">
|
2010-05-01 18:42:32 -04:00
|
|
|
|
2011-01-12 18:48:28 -05:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/quoted_text"
|
|
|
|
android:layout_width="fill_parent"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-04-13 14:21:56 -04:00
|
|
|
android:gravity="top"
|
2011-01-12 18:48:28 -05:00
|
|
|
android:minLines="3"
|
|
|
|
android:autoText="true"
|
|
|
|
android:capitalize="sentences"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2011-01-12 18:48:28 -05:00
|
|
|
<com.fsck.k9.view.MessageWebView
|
|
|
|
android:id="@+id/quoted_html"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent" />
|
|
|
|
|
2011-02-05 18:14:02 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/quoted_text_buttons"
|
2008-10-27 21:04:44 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2011-01-12 18:48:28 -05:00
|
|
|
android:layout_alignParentTop="true"
|
2011-02-05 18:14:02 -05:00
|
|
|
android:layout_alignParentRight="true">
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/quoted_text_edit"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:contentDescription="@string/message_compose_description_edit_quoted_text"
|
2011-02-05 18:14:02 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="8dip"
|
|
|
|
android:background="@drawable/btn_edit" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/quoted_text_delete"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:contentDescription="@string/message_compose_description_delete_quoted_text"
|
2011-02-05 18:14:02 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/btn_dialog" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2010-05-01 18:42:32 -04:00
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
</RelativeLayout>
|
2010-05-01 18:42:32 -04:00
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/lower_signature"
|
2009-06-08 23:11:35 -04:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-04-13 14:21:56 -04:00
|
|
|
android:gravity="top"
|
2009-06-08 23:11:35 -04:00
|
|
|
android:editable="false"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:minLines="0"
|
|
|
|
android:autoText="true"
|
|
|
|
android:capitalize="sentences"
|
2012-03-22 18:37:03 -04:00
|
|
|
android:hint="@string/message_compose_signature_hint"
|
|
|
|
android:inputType="textMultiLine|textAutoCorrect|textCapSentences"
|
2010-05-01 18:42:32 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
</LinearLayout>
|
2010-05-01 18:42:32 -04:00
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
</ScrollView>
|
2008-10-30 13:38:26 -04:00
|
|
|
|
2008-10-27 21:04:44 -04:00
|
|
|
</LinearLayout>
|