2012-07-20 02:23:49 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-02-15 12:21:56 +00:00
|
|
|
<org.thoughtcrime.securesms.ConversationItem android:id="@+id/conversation_item"
|
2014-12-30 01:31:41 +00: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-30 06:37:01 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-12-30 01:31:41 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2014-02-15 12:21:56 +00:00
|
|
|
|
|
|
|
<TextView android:id="@+id/group_message_status"
|
2015-01-30 06:37:01 +00: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 12:21:56 +00:00
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
<org.thoughtcrime.securesms.components.ForegroundImageView
|
2014-02-25 03:07:12 +00:00
|
|
|
android:id="@+id/contact_photo"
|
|
|
|
android:foreground="@drawable/contact_photo_background"
|
2014-02-15 12:21:56 +00:00
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
2014-12-30 01:31:41 +00:00
|
|
|
app:riv_oval="true"
|
2014-02-15 12:21:56 +00:00
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:cropToPadding="true"
|
2014-08-20 02:04:32 +00:00
|
|
|
android:contentDescription="@string/conversation_item_received__contact_photo_description"
|
2014-02-15 12:21:56 +00:00
|
|
|
android:scaleType="centerCrop" />
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2015-01-30 06:37:01 +00:00
|
|
|
<org.thoughtcrime.securesms.components.IncomingBubbleContainer
|
|
|
|
android:id="@+id/bubble"
|
2014-01-08 22:29:05 +00:00
|
|
|
android:layout_width="wrap_content"
|
2013-06-26 16:07:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-01-30 06:37:01 +00:00
|
|
|
android:layout_marginLeft="29dp" />
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2014-02-15 12:21:56 +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"
|
2014-02-15 12:21:56 +00:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:background="?conversation_background">
|
2012-07-20 02:23:49 +00:00
|
|
|
|
2014-02-15 12:21:56 +00:00
|
|
|
<ImageView android:id="@+id/sms_failed_indicator"
|
2012-07-20 02:23:49 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-06-12 21:09:50 +00:00
|
|
|
android:src="@drawable/ic_action_warning_red"
|
2014-03-28 02:46:27 +00:00
|
|
|
android:contentDescription="@string/conversation_item_sent__send_failed_indicator_description"
|
2014-02-15 12:21:56 +00:00
|
|
|
android:visibility="gone" />
|
2012-07-20 02:23:49 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</org.thoughtcrime.securesms.ConversationItem>
|