Fixed audio only layout grid not scrollable
This commit is contained in:
parent
4c3c79e8a2
commit
f304055671
1 changed files with 15 additions and 7 deletions
|
@ -117,18 +117,26 @@
|
|||
app:layout_constraintEnd_toEndOf="parent"
|
||||
android:visibility="@{conferenceViewModel.isRemotelyRecorded ? View.VISIBLE : View.GONE, default=gone}" />
|
||||
|
||||
<androidx.gridlayout.widget.GridLayout
|
||||
android:id="@+id/grid_layout"
|
||||
<ScrollView
|
||||
android:id="@+id/grid_scrollview"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="0dp"
|
||||
app:layout_constraintTop_toBottomOf="@id/top_barrier"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/hinge_bottom"
|
||||
app:entries="@{conferenceViewModel.conferenceParticipantDevices}"
|
||||
app:layout="@{@layout/voip_conference_participant_remote_audio_only}"
|
||||
app:columnCount="2"
|
||||
app:orientation="horizontal" />
|
||||
app:layout_constraintBottom_toTopOf="@id/hinge_bottom">
|
||||
|
||||
|
||||
<androidx.gridlayout.widget.GridLayout
|
||||
android:id="@+id/grid_layout"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
app:entries="@{conferenceViewModel.conferenceParticipantDevices}"
|
||||
app:layout="@{@layout/voip_conference_participant_remote_audio_only}"
|
||||
app:columnCount="2"
|
||||
app:orientation="horizontal" />
|
||||
|
||||
</ScrollView>
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
|
|
Loading…
Reference in a new issue