2012-07-19 19:23:49 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-02-15 04:21:56 -08:00
|
|
|
<org.thoughtcrime.securesms.ConversationItem android:id="@+id/conversation_item"
|
2014-12-29 17:31:41 -08:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingRight="10dip"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="?conversation_item_background"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-01-29 20:37:01 -10:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-12-29 17:31:41 -08:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2014-02-15 04:21:56 -08:00
|
|
|
|
|
|
|
<TextView android:id="@+id/group_message_status"
|
2015-01-29 20:37:01 -10:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:textSize="13sp"
|
|
|
|
android:textColor="?attr/conversation_group_member_name"
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
|
|
<RelativeLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:layout_marginLeft="9dp"
|
|
|
|
android:layout_marginBottom="6dp"
|
|
|
|
android:layout_marginRight="0dp">
|
2014-02-15 04:21:56 -08:00
|
|
|
|
2015-05-04 11:36:18 -07:00
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
2014-02-25 05:07:12 +02:00
|
|
|
android:id="@+id/contact_photo"
|
|
|
|
android:foreground="@drawable/contact_photo_background"
|
2014-02-15 04:21:56 -08:00
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:cropToPadding="true"
|
2015-05-04 11:36:18 -07:00
|
|
|
android:contentDescription="@string/conversation_item_received__contact_photo_description" />
|
2012-07-19 19:23:49 -07:00
|
|
|
|
2015-01-29 20:37:01 -10:00
|
|
|
<org.thoughtcrime.securesms.components.IncomingBubbleContainer
|
|
|
|
android:id="@+id/bubble"
|
2014-01-08 12:29:05 -10:00
|
|
|
android:layout_width="wrap_content"
|
2013-06-26 09:07:46 -07:00
|
|
|
android:layout_height="wrap_content"
|
2015-01-29 20:37:01 -10:00
|
|
|
android:layout_marginLeft="29dp" />
|
2012-07-19 19:23:49 -07:00
|
|
|
|
2014-02-15 04:21:56 -08:00
|
|
|
<LinearLayout android:id="@+id/indicators_parent"
|
|
|
|
android:layout_width="wrap_content"
|
2015-01-15 13:35:35 -08:00
|
|
|
android:layout_height="wrap_content"
|
2014-02-15 04:21:56 -08:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:orientation="vertical"
|
2015-06-01 16:51:14 -07:00
|
|
|
android:gravity="center_vertical">
|
2012-07-19 19:23:49 -07:00
|
|
|
|
2014-02-15 04:21:56 -08:00
|
|
|
<ImageView android:id="@+id/sms_failed_indicator"
|
2012-07-19 19:23:49 -07:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-06-12 23:09:50 +02:00
|
|
|
android:src="@drawable/ic_action_warning_red"
|
2014-03-27 19:46:27 -07:00
|
|
|
android:contentDescription="@string/conversation_item_sent__send_failed_indicator_description"
|
2014-02-15 04:21:56 -08:00
|
|
|
android:visibility="gone" />
|
2012-07-19 19:23:49 -07:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</org.thoughtcrime.securesms.ConversationItem>
|