mirror of
https://github.com/oxen-io/session-android.git
synced 2023-12-14 02:53:01 +01:00
71 lines
2.7 KiB
XML
71 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
tools:parentTag="org.thoughtcrime.securesms.components.ConversationItemFooter">
|
|
|
|
<TextView
|
|
android:id="@+id/footer_date"
|
|
android:autoLink="none"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:layout_marginRight="6dp"
|
|
android:layout_marginEnd="6dp"
|
|
android:linksClickable="false"
|
|
style="@style/Signal.Text.Caption.MessageSent"
|
|
android:textColor="?conversation_item_sent_text_secondary_color"
|
|
android:textAllCaps="true"
|
|
tools:text="30 mins"/>
|
|
|
|
<TextView
|
|
android:id="@+id/footer_sim_info"
|
|
android:autoLink="none"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="15sp"
|
|
android:linksClickable="false"
|
|
style="@style/Signal.Text.Caption.MessageSent"
|
|
android:layout_gravity="right|end|bottom"
|
|
android:fontFamily="sans-serif-light"
|
|
android:paddingLeft="4dp"
|
|
android:paddingStart="4dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"
|
|
tools:text="to SIM1" />
|
|
|
|
<org.thoughtcrime.securesms.components.ExpirationTimerView
|
|
android:id="@+id/footer_expiration_timer"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:layout_marginLeft="3dp"
|
|
android:layout_marginStart="3dp"
|
|
android:layout_marginRight="3dp"
|
|
android:layout_marginEnd="3dp"
|
|
android:layout_width="12dp"
|
|
android:layout_height="12dp"
|
|
android:visibility="gone"
|
|
tools:visibility="visible"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/footer_insecure_indicator"
|
|
android:layout_width="12dp"
|
|
android:layout_height="11dp"
|
|
android:src="@drawable/ic_unlocked_white_18dp"
|
|
android:visibility="gone"
|
|
android:layout_gravity="center_vertical|end"
|
|
android:alpha=".6"
|
|
android:contentDescription="@string/conversation_item__secure_message_description"
|
|
tools:visibility="visible"/>
|
|
|
|
<org.thoughtcrime.securesms.components.DeliveryStatusView
|
|
android:id="@+id/footer_delivery_status"
|
|
android:layout_width="20dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"
|
|
app:iconColor="?attr/conversation_item_delivery_icon_color"/>
|
|
|
|
</merge>
|