2020-01-31 02:57:24 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-08-24 03:34:34 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2020-01-31 02:57:24 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/conversation_view_background"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/contentView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:padding="@dimen/medium_spacing">
|
|
|
|
|
2020-05-11 06:19:26 +00:00
|
|
|
<org.thoughtcrime.securesms.loki.views.ProfilePictureView
|
2020-01-31 02:57:24 +00:00
|
|
|
android:id="@+id/profilePictureView"
|
|
|
|
android:layout_width="@dimen/medium_profile_picture_size"
|
|
|
|
android:layout_height="@dimen/medium_profile_picture_size" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/nameTextView"
|
2020-08-18 03:27:53 +00:00
|
|
|
android:layout_width="0dp"
|
2020-01-31 02:57:24 +00:00
|
|
|
android:layout_height="wrap_content"
|
2020-08-18 03:27:53 +00:00
|
|
|
android:layout_marginStart="@dimen/medium_spacing"
|
2020-01-31 02:57:24 +00:00
|
|
|
android:maxLines="1"
|
2020-08-18 03:27:53 +00:00
|
|
|
android:textAlignment="viewStart"
|
2020-01-31 02:57:24 +00:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:textSize="@dimen/medium_font_size"
|
|
|
|
android:textStyle="bold"
|
2020-08-24 03:34:34 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
tools:text="Spiderman" />
|
2020-01-31 02:57:24 +00:00
|
|
|
|
|
|
|
<ImageView
|
2020-08-17 22:55:17 +00:00
|
|
|
android:id="@+id/actionIndicatorImageView"
|
2020-01-31 02:57:24 +00:00
|
|
|
android:layout_width="24dp"
|
|
|
|
android:layout_height="24dp"
|
2020-08-18 03:27:53 +00:00
|
|
|
android:layout_marginStart="@dimen/medium_spacing"
|
2020-08-24 06:46:12 +00:00
|
|
|
android:src="@drawable/ic_circle"/>
|
2020-01-31 02:57:24 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1px"
|
2020-08-24 03:34:34 +00:00
|
|
|
android:background="?android:dividerHorizontal" />
|
2020-01-31 02:57:24 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|