mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
24 lines
867 B
XML
24 lines
867 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:orientation="horizontal"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center_vertical"
|
||
|
android:padding="16dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:src="@drawable/ic_unidentified_delivery"
|
||
|
android:tint="?conversation_item_sent_text_secondary_color"/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/ud_learn_more"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="@string/preferences_communication__sealed_sender_learn_more"
|
||
|
android:textColor="@color/signal_primary"/>
|
||
|
|
||
|
</LinearLayout>
|