2012-07-20 02:23:49 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<org.thoughtcrime.securesms.ConversationItem
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-01-15 21:35:35 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-01-30 06:37:01 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2012-07-20 02:23:49 +00:00
|
|
|
android:id="@+id/conversation_item"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-06-12 17:22:57 +00:00
|
|
|
android:orientation="horizontal"
|
2015-01-23 20:59:22 +00:00
|
|
|
android:background="?conversation_item_background">
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2014-01-08 22:29:05 +00:00
|
|
|
<RelativeLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
android:layout_marginLeft="6dp"
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
android:layout_marginRight="0dp">
|
2012-07-20 02:23:49 +00:00
|
|
|
|
|
|
|
<LinearLayout android:id="@+id/indicators_parent"
|
|
|
|
android:layout_width="wrap_content"
|
2015-01-15 21:35:35 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-07-20 02:23:49 +00:00
|
|
|
android:orientation="vertical"
|
2014-03-01 22:17:55 +00:00
|
|
|
android:gravity="left|center_vertical"
|
2014-02-15 01:10:05 +00:00
|
|
|
android:layout_marginLeft="6dp"
|
2014-03-01 22:17:55 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true">
|
2012-07-20 02:23:49 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/sms_failed_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-15 21:35:35 +00:00
|
|
|
android:src="@drawable/ic_error_red_24dp"
|
|
|
|
tools:visibility="visible"
|
2013-06-21 18:56:59 +00:00
|
|
|
android:visibility="gone"
|
2015-01-15 21:35:35 +00:00
|
|
|
android:contentDescription="@string/conversation_item_sent__send_failed_indicator_description" />
|
2014-03-01 22:17:55 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/pending_approval_indicator"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-15 21:35:35 +00:00
|
|
|
android:src="@drawable/ic_info_outline_grey600_24dp"
|
2014-03-01 22:17:55 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_gravity="center_vertical"
|
2015-01-15 21:35:35 +00:00
|
|
|
android:contentDescription="@string/conversation_item_sent__pending_approval_description"
|
|
|
|
tools:visibility="visible" />
|
|
|
|
|
2012-07-20 02:23:49 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
<org.thoughtcrime.securesms.components.OutgoingBubbleContainer
|
|
|
|
android:id="@+id/bubble"
|
2012-07-20 02:23:49 +00:00
|
|
|
android:layout_width="wrap_content"
|
2015-01-30 06:37:01 +00:00
|
|
|
android:layout_height="wrap_content" />
|
2014-01-08 22:29:05 +00:00
|
|
|
|
2014-03-01 22:17:55 +00:00
|
|
|
<TextView android:id="@+id/indicator_text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-01-30 06:37:01 +00:00
|
|
|
android:layout_below="@id/bubble"
|
2014-03-01 22:17:55 +00:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:paddingRight="5dip"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:paddingTop="3dp"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:layout_marginLeft="50dp"
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:layout_marginTop="-2dp"
|
|
|
|
android:textSize="12sp"
|
2015-01-23 20:59:22 +00:00
|
|
|
android:textColor="?conversation_sent_text_indicator_tab_color"
|
2014-03-01 22:17:55 +00:00
|
|
|
android:background="?conversation_item_sent_indicator_text_background"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
2012-07-20 02:23:49 +00:00
|
|
|
</RelativeLayout>
|
|
|
|
</org.thoughtcrime.securesms.ConversationItem>
|