mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-12 18:59:06 +01:00
52 lines
1.8 KiB
XML
52 lines
1.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right|end"
|
|
android:background="@drawable/notice_out"
|
|
android:layout_marginLeft="@dimen/message_bubble_margin_non_tail"
|
|
android:layout_marginRight="@dimen/message_bubble_margin_tail">
|
|
|
|
<TextView
|
|
android:id="@+id/noticeText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textIsSelectable="true"
|
|
android:textSize="@dimen/text_size_medium"
|
|
android:textStyle="italic"
|
|
android:textColor="@color/briar_text_secondary"
|
|
tools:text="@string/introduction_response_accepted_sent"/>
|
|
|
|
<TextView
|
|
android:id="@+id/noticeTime"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/message_bubble_timestamp_margin"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_below="@+id/noticeText"
|
|
android:textColor="@color/private_message_date"
|
|
android:textSize="@dimen/text_size_tiny"
|
|
tools:text="Dec 24, 13:37"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/noticeStatus"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignBottom="@+id/noticeTime"
|
|
android:layout_marginLeft="@dimen/margin_medium"
|
|
android:layout_toEndOf="@+id/noticeTime"
|
|
android:layout_toRightOf="@+id/noticeTime"
|
|
tools:ignore="ContentDescription"
|
|
tools:src="@drawable/message_delivered"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout> |