38 lines
No EOL
1.6 KiB
XML
38 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="16dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/show_admin_handle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/bottom_sheet_handle"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
tools:ignore="ContentDescription" />
|
|
|
|
<TextView
|
|
android:id="@+id/show_admin_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="28dp"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:text="@string/ConversationActivity_message_an_admin"
|
|
style="@style/Signal.Text.Title.BottomSheet"
|
|
app:layout_constraintTop_toBottomOf="@id/show_admin_handle" />
|
|
|
|
<org.thoughtcrime.securesms.groups.ui.GroupMemberListView
|
|
android:id="@+id/show_admin_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
app:layout_constraintTop_toBottomOf="@id/show_admin_title"/>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |