2011-12-20 18:20:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-06-21 18:56:59 +00:00
|
|
|
<org.thoughtcrime.securesms.ConversationListItem
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-12-30 01:31:41 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2015-01-21 07:26:58 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-03-10 09:32:32 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-01-21 07:26:58 +00:00
|
|
|
android:layout_height="70dp">
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2015-06-01 23:51:14 +00:00
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
|
|
|
android:id="@+id/contact_photo_image"
|
|
|
|
android:foreground="@drawable/contact_photo_background"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="50dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginTop="3dp"
|
|
|
|
android:layout_marginBottom="3dp"
|
|
|
|
android:cropToPadding="true"
|
|
|
|
tools:src="@drawable/ic_contact_picture"
|
|
|
|
android:contentDescription="@string/conversation_list_item_view__contact_photo_image"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_marginLeft="10dp" />
|
2013-05-24 01:10:15 +00:00
|
|
|
|
2015-10-16 20:59:40 +00:00
|
|
|
<RelativeLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="4dip"
|
|
|
|
android:layout_marginRight="8dip"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@id/contact_photo_image"
|
|
|
|
android:weightSum="1"
|
|
|
|
android:orientation="horizontal">
|
2012-07-17 03:20:13 +00:00
|
|
|
|
2015-10-16 20:59:40 +00:00
|
|
|
<org.thoughtcrime.securesms.components.FromTextView
|
|
|
|
android:id="@+id/from"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_toLeftOf="@+id/thumbnail"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textColor="?attr/conversation_list_item_contact_color"
|
|
|
|
android:singleLine="true"
|
|
|
|
tools:text="Jules Bonnot"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:drawablePadding="5dp"/>
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2015-10-16 20:59:40 +00:00
|
|
|
<ImageView android:id="@+id/error"
|
|
|
|
android:layout_height="20dp"
|
|
|
|
android:layout_width="20dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_below="@id/from"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:visibility="visible"
|
|
|
|
android:src="@drawable/ic_action_warning_red"
|
|
|
|
android:contentDescription="@string/conversation_list_item_view__error_alert" />
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2015-10-16 20:59:40 +00:00
|
|
|
<org.thoughtcrime.securesms.components.emoji.EmojiTextView
|
|
|
|
android:id="@+id/subject"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/from"
|
|
|
|
android:layout_toRightOf="@id/error"
|
2015-11-23 23:07:41 +00:00
|
|
|
android:layout_toLeftOf="@+id/archived"
|
2015-10-16 20:59:40 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?attr/conversation_list_item_subject_color"
|
|
|
|
android:fontFamily="sans-serif-light"
|
|
|
|
android:singleLine="true"
|
|
|
|
tools:text="Wheels arrive at 3pm flat. This is a somewhat longer message."
|
|
|
|
android:ellipsize="end" />
|
2014-03-10 09:32:32 +00:00
|
|
|
|
2015-10-16 20:59:40 +00:00
|
|
|
<org.thoughtcrime.securesms.components.ThumbnailView
|
|
|
|
android:id="@+id/thumbnail"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_marginRight="5dip"
|
|
|
|
android:layout_marginLeft="5dip"
|
|
|
|
android:layout_toLeftOf="@+id/date"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginTop="5dip"
|
|
|
|
android:contentDescription="@string/conversation_activity__attachment_thumbnail"
|
|
|
|
app:backgroundColorHint="?conversation_background"
|
|
|
|
android:visibility="gone"
|
|
|
|
tools:src="@drawable/ic_video_light"
|
2015-11-12 22:44:25 +00:00
|
|
|
tools:visibility="visible" />
|
2014-03-10 09:32:32 +00:00
|
|
|
|
2015-10-16 20:59:40 +00:00
|
|
|
<TextView android:id="@id/date"
|
|
|
|
android:layout_marginLeft="3dip"
|
2014-03-10 09:32:32 +00:00
|
|
|
android:layout_height="wrap_content"
|
2015-10-16 20:59:40 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_above="@id/subject"
|
2014-03-10 09:32:32 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2015-10-16 20:59:40 +00:00
|
|
|
android:textColor="?attr/conversation_list_item_date_color"
|
2014-03-10 09:32:32 +00:00
|
|
|
android:fontFamily="sans-serif-light"
|
2015-10-16 20:59:40 +00:00
|
|
|
tools:text="30 mins"
|
|
|
|
android:singleLine="true"/>
|
2011-12-20 18:20:44 +00:00
|
|
|
|
2015-11-23 23:07:41 +00:00
|
|
|
<TextView android:id="@+id/archived"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/date"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignBaseline="@id/subject"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:text="@string/conversation_list_item_view__archived"
|
|
|
|
android:textColor="#ffbbbbbb"
|
|
|
|
android:background="@drawable/rounded_rectangle"
|
|
|
|
android:textSize="12sp"
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
2015-10-16 20:59:40 +00:00
|
|
|
</RelativeLayout>
|
2012-07-26 23:21:45 +00:00
|
|
|
</org.thoughtcrime.securesms.ConversationListItem>
|