|
|
|
@ -1,11 +1,57 @@
|
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:id="@+id/contentView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
|
android:id="@+id/conversationToolbar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:background="?colorPrimary"
|
|
|
|
|
app:contentInsetStart="0dp">
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
|
android:layout_marginLeft="20dp"
|
|
|
|
|
android:layout_marginRight="20dp">
|
|
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
|
android:id="@+id/backButton"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:src="?attr/homeAsUpIndicator"
|
|
|
|
|
android:background="?attr/selectableItemBackgroundBorderless" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/conversationTitleView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_marginLeft="64dp"
|
|
|
|
|
android:text="Elon"
|
|
|
|
|
android:textColor="@color/text"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:textSize="@dimen/very_large_font_size" />
|
|
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.loki.views.ProfilePictureView
|
|
|
|
|
android:id="@+id/conversationSettingsButton"
|
|
|
|
|
android:layout_width="@dimen/small_profile_picture_size"
|
|
|
|
|
android:layout_height="@dimen/small_profile_picture_size"
|
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
|
android:layout_centerVertical="true" />
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
|
android:id="@+id/conversationRecyclerView"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|