mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
77 lines
3.0 KiB
XML
77 lines
3.0 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<TableRow android:id="@+id/sent_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="@dimen/message_details_table_row_pad">
|
||
|
|
||
|
<TextView android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/message_details_header__sent"
|
||
|
android:gravity="right"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<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"
|
||
|
tools:text="Jan 18, 9:29AM" />
|
||
|
|
||
|
</TableRow>
|
||
|
|
||
|
<TableRow android:id="@+id/received_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="@dimen/message_details_table_row_pad">
|
||
|
|
||
|
<TextView android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/message_details_header__received"
|
||
|
android:gravity="right"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<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"
|
||
|
tools:text="Jan 18, 9:31AM" />
|
||
|
|
||
|
</TableRow>
|
||
|
|
||
|
<TableRow android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="@dimen/message_details_table_row_pad">
|
||
|
|
||
|
<TextView android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/message_details_header__via"
|
||
|
android:gravity="right"
|
||
|
android:textStyle="bold" />
|
||
|
|
||
|
<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)" />
|
||
|
|
||
|
</TableRow>
|
||
|
|
||
|
<TableRow android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
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" />
|
||
|
|
||
|
</TableRow>
|
||
|
|
||
|
</TableLayout>
|