24 lines
No EOL
1.1 KiB
XML
24 lines
No EOL
1.1 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"
|
|
tools:viewBindingIgnore="true"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<org.thoughtcrime.securesms.groups.ui.GroupMemberListView
|
|
android:id="@+id/list_members"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
android:scrollIndicators="top|bottom"
|
|
android:scrollbars="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:maxHeight="280dp"
|
|
tools:ignore="RtlSymmetry,UnusedAttribute"
|
|
tools:listitem="@layout/group_recipient_list_item" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |