2019-01-24 11:27:57 +00:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="fill_parent"
|
2016-01-12 14:35:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-24 11:27:57 +00:00
|
|
|
android:descendantFocusability="blocksDescendants">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2019-01-24 11:27:57 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/frame"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-24 11:27:57 +00:00
|
|
|
android:background="?attr/color_background_primary">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-24 11:27:57 +00:00
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="8dp">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2019-01-24 11:27:57 +00:00
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
|
|
android:id="@+id/conversation_image"
|
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:riv_corner_radius="2dp" />
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<RelativeLayout
|
2019-01-24 11:27:57 +00:00
|
|
|
android:layout_width="fill_parent"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-24 11:27:57 +00:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@+id/conversation_image"
|
|
|
|
android:paddingLeft="@dimen/avatar_item_distance">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2017-03-06 08:02:43 +00:00
|
|
|
<TextView
|
2019-01-24 11:27:57 +00:00
|
|
|
android:id="@+id/conversation_name"
|
2017-03-06 08:02:43 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-24 11:27:57 +00:00
|
|
|
android:layout_alignLeft="@+id/conversation_lastwrapper"
|
|
|
|
android:layout_toLeftOf="@+id/conversation_lastupdate"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Subhead" />
|
2017-03-06 08:02:43 +00:00
|
|
|
|
2019-01-24 11:27:57 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/conversation_lastwrapper"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/conversation_name"
|
|
|
|
android:layout_marginTop="4dp">
|
2018-04-06 11:49:50 +00:00
|
|
|
|
2017-11-23 08:36:51 +00:00
|
|
|
<TextView
|
2019-01-24 11:27:57 +00:00
|
|
|
android:id="@+id/sender_name"
|
|
|
|
android:layout_width="wrap_content"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:layout_height="wrap_content"
|
2017-03-03 10:55:07 +00:00
|
|
|
android:minHeight="?attr/IconSize"
|
2019-01-24 11:27:57 +00:00
|
|
|
android:layout_centerVertical="true"
|
2017-03-03 10:55:07 +00:00
|
|
|
android:gravity="center_vertical"
|
2019-01-24 11:27:57 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:text="@string/me"
|
|
|
|
android:layout_marginRight="?attr/TextSeparation"
|
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1.Secondary"
|
|
|
|
android:visibility="visible" />
|
2017-03-02 21:24:58 +00:00
|
|
|
|
2019-01-24 11:27:57 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_toRightOf="@id/sender_name"
|
|
|
|
android:layout_alignWithParentIfMissing="true"
|
|
|
|
android:layout_toLeftOf="@+id/notification_status"
|
|
|
|
android:id="@+id/txt_img_wrapper">
|
2015-04-02 22:06:37 +00:00
|
|
|
|
2019-01-24 11:27:57 +00:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/conversation_lastmsg_img"
|
|
|
|
android:layout_width="?attr/IconSize"
|
|
|
|
android:layout_height="?attr/IconSize"
|
|
|
|
android:layout_marginRight="?attr/TextSeparation" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_lastmsg"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:minHeight="?attr/IconSize"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:scrollHorizontally="false"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:visibility="visible"
|
|
|
|
android:id="@+id/notification_status"
|
|
|
|
android:layout_width="?attr/IconSize"
|
|
|
|
android:layout_height="?attr/IconSize"
|
|
|
|
android:layout_toLeftOf="@+id/unread_count"
|
|
|
|
android:layout_alignWithParentIfMissing="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:alpha="?attr/icon_alpha"
|
|
|
|
android:src="?attr/icon_notifications" />
|
|
|
|
|
|
|
|
<eu.siacs.conversations.ui.widget.UnreadCountCustomView
|
|
|
|
android:id="@+id/unread_count"
|
|
|
|
android:layout_width="?attr/IconSize"
|
|
|
|
android:layout_height="?attr/IconSize"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:layout_marginBottom="1dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
app:backgroundColor="?attr/unread_count" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_lastupdate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignBaseline="@+id/conversation_name"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:gravity="right"
|
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Caption" />
|
|
|
|
</RelativeLayout>
|
2016-01-08 13:41:55 +00:00
|
|
|
</RelativeLayout>
|
2019-01-24 11:27:57 +00:00
|
|
|
</FrameLayout>
|
2016-01-08 13:41:55 +00:00
|
|
|
</FrameLayout>
|
2019-01-24 11:27:57 +00:00
|
|
|
</layout>
|