2012-02-20 22:56:05 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<com.fsck.k9.view.MessageHeader
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/header_container"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<LinearLayout
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_width="match_parent"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_height="wrap_content"
|
2012-03-17 23:51:29 -04:00
|
|
|
android:background="@color/message_view_header_background">
|
2012-02-20 22:56:05 -05:00
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<!-- Color chip -->
|
|
|
|
<View
|
|
|
|
android:id="@+id/chip"
|
|
|
|
android:layout_width="6dip"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginRight="6dip"/>
|
2012-02-20 22:56:05 -05:00
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="6dip"
|
|
|
|
android:orientation="vertical">
|
2012-02-20 22:56:05 -05:00
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
2012-02-20 22:56:05 -05:00
|
|
|
|
2012-09-07 23:33:53 -04:00
|
|
|
<!-- Subject -->
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subject"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@+id/state_container"
|
2012-09-07 23:33:53 -04:00
|
|
|
android:maxLines="3"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2013-01-31 20:50:00 -05:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
2012-02-20 22:56:05 -05:00
|
|
|
|
2012-02-21 17:38:43 -05:00
|
|
|
<!-- From -->
|
2013-02-04 07:23:44 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/from"
|
2012-02-21 17:38:43 -05:00
|
|
|
android:layout_width="wrap_content"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/subject"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@+id/state_container"
|
|
|
|
android:paddingRight="6dip"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
2012-02-21 17:38:43 -05:00
|
|
|
|
|
|
|
<!-- To -->
|
2013-02-04 07:23:44 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/to"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_below="@id/from"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@+id/state_container"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
2012-02-21 17:38:43 -05:00
|
|
|
|
|
|
|
<!-- CC -->
|
2013-02-04 07:23:44 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/cc"
|
2012-02-21 17:38:43 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_below="@id/to"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:maxLines="2"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
2012-03-05 22:26:18 -05:00
|
|
|
|
2012-09-06 18:45:19 -04:00
|
|
|
<LinearLayout
|
2013-02-04 07:23:44 -05:00
|
|
|
android:id="@+id/state_container"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:orientation="vertical">
|
2012-09-06 18:45:19 -04:00
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<!-- Date -->
|
2012-09-06 18:45:19 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/date"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_gravity="right"
|
2012-09-06 18:45:19 -04:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="none"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<!-- Time -->
|
2012-09-06 18:45:19 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/time"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_gravity="right"
|
2012-09-06 18:45:19 -04:00
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="none"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<!-- State icons -->
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/icon_container"
|
2012-09-13 01:56:24 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-02-04 07:23:44 -05:00
|
|
|
android:layout_marginTop="2dip"
|
|
|
|
android:layout_marginBottom="2dip"
|
|
|
|
android:layout_gravity="center_vertical|right"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/answered"
|
|
|
|
android:layout_width="22sp"
|
|
|
|
android:layout_height="22sp"
|
|
|
|
android:paddingRight="4dip"
|
|
|
|
android:background="@drawable/ic_email_answered_small"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/forwarded"
|
|
|
|
android:layout_width="22sp"
|
|
|
|
android:layout_height="22sp"
|
|
|
|
android:paddingRight="4dip"
|
|
|
|
android:background="@drawable/ic_email_forwarded_small"/>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/flagged"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:focusable="false"
|
|
|
|
android:button="@drawable/star"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2012-09-13 01:56:24 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
</RelativeLayout>
|
2012-02-20 22:56:05 -05:00
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/additional_headers_view"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:singleLine="false"
|
|
|
|
android:ellipsize="none"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2012-03-17 23:51:29 -04:00
|
|
|
|
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
</LinearLayout>
|
2012-03-17 23:51:29 -04:00
|
|
|
|
|
|
|
</LinearLayout>
|
2012-02-20 22:56:05 -05:00
|
|
|
|
2013-02-04 07:23:44 -05:00
|
|
|
<View
|
|
|
|
android:layout_height="1dip"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@id/additional_headers_view"
|
|
|
|
android:background="@drawable/divider_horizontal_email" />
|
|
|
|
|
2012-02-20 22:56:05 -05:00
|
|
|
<!-- Button area -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="right"
|
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:paddingRight="6dip"
|
2012-02-21 17:38:43 -05:00
|
|
|
android:paddingTop="4dip"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:baselineAligned="false">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_pictures"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginLeft="6dip"
|
2012-02-21 17:38:43 -05:00
|
|
|
android:layout_marginBottom="4dip"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/message_view_show_pictures_action"
|
|
|
|
style="?android:attr/buttonStyleSmall"/>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_attachments"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginLeft="6dip"
|
2012-02-21 17:38:43 -05:00
|
|
|
android:layout_marginBottom="4dip"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/message_view_show_attachments_action"
|
|
|
|
style="?android:attr/buttonStyleSmall"/>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_message"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_marginLeft="6dip"
|
2012-02-21 17:38:43 -05:00
|
|
|
android:layout_marginBottom="4dip"
|
2012-02-20 22:56:05 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/message_view_show_message_action"
|
|
|
|
style="?android:attr/buttonStyleSmall"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/message_view_crypto_layout"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</com.fsck.k9.view.MessageHeader>
|