2015-01-15 21:35:35 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2015-02-27 19:07:20 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<FrameLayout android:id="@+id/item_container"
|
2015-02-27 19:07:20 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-03-24 20:37:57 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="15dp"
|
|
|
|
android:paddingBottom="15dp"
|
|
|
|
android:elevation="2dp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/error_text"
|
2015-02-27 19:07:20 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-01-15 21:35:35 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-03-24 20:37:57 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:padding="5dp"
|
|
|
|
tools:visibility="visible"
|
|
|
|
android:text="@string/message_details_header__issues_need_your_attention"
|
|
|
|
android:drawableLeft="@drawable/ic_info_outline_light"
|
|
|
|
android:drawableStart="@drawable/ic_info_outline_light"
|
|
|
|
android:gravity="center_vertical" />
|
|
|
|
|
|
|
|
<TableLayout android:id="@+id/metadata_container"
|
|
|
|
android:layout_width="match_parent"
|
2015-11-19 06:32:33 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:shrinkColumns="1">
|
2015-03-24 20:37:57 +00:00
|
|
|
|
|
|
|
<TableRow android:id="@+id/sent_container"
|
|
|
|
android:layout_width="match_parent"
|
2015-02-27 19:07:20 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-03-24 20:37:57 +00:00
|
|
|
android:padding="@dimen/message_details_table_row_pad">
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TextView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/message_details_header__sent"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textStyle="bold" />
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TextView android:id="@+id/sent_time"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/message_details_table_row_pad"
|
2015-11-19 06:32:33 +00:00
|
|
|
tools:text="Jan 18, 2015, 12:29:37 AM GMT-08:00" />
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
</TableRow>
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TableRow android:id="@+id/received_container"
|
|
|
|
android:layout_width="match_parent"
|
2015-02-27 19:07:20 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-03-24 20:37:57 +00:00
|
|
|
android:padding="@dimen/message_details_table_row_pad">
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TextView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/message_details_header__received"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textStyle="bold" />
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TextView android:id="@+id/received_time"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/message_details_table_row_pad"
|
2015-11-19 06:32:33 +00:00
|
|
|
tools:text="Jan 18, 2015, 12:31:15 AM GMT-08:00" />
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
</TableRow>
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TableRow android:layout_width="wrap_content"
|
2015-02-27 19:07:20 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-03-24 20:37:57 +00:00
|
|
|
android:padding="@dimen/message_details_table_row_pad">
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TextView android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/message_details_header__via"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textStyle="bold" />
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TextView android:id="@+id/transport"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="@dimen/message_details_table_row_pad"
|
|
|
|
tools:text="Push (TextSecure)" />
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
</TableRow>
|
2015-02-27 19:07:20 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
<TableRow android:layout_width="wrap_content"
|
2015-02-27 19:07:20 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-03-24 20:37:57 +00:00
|
|
|
android:padding="@dimen/message_details_table_row_pad">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/tofrom"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:text="@string/message_details_header__to"
|
|
|
|
android:textStyle="bold" />
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
</TableRow>
|
2015-01-15 21:35:35 +00:00
|
|
|
|
2015-03-24 20:37:57 +00:00
|
|
|
</TableLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|