From e49290b8accc5f593d470be5a8b58691730cbc22 Mon Sep 17 00:00:00 2001 From: Benoit Marty <benoit@matrix.org> Date: Mon, 12 Jul 2021 13:40:59 +0200 Subject: [PATCH] Fix mic visible for invite room mode. We can still view the mic when the screen is resumed, to be improved. --- .../src/main/res/layout/fragment_room_detail.xml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/vector/src/main/res/layout/fragment_room_detail.xml b/vector/src/main/res/layout/fragment_room_detail.xml index e46825dfc6..b8f4a8093a 100644 --- a/vector/src/main/res/layout/fragment_room_detail.xml +++ b/vector/src/main/res/layout/fragment_room_detail.xml @@ -174,6 +174,14 @@ app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" /> + <im.vector.app.features.home.room.detail.composer.VoiceMessageRecorderView + android:id="@+id/voiceMessageRecorderView" + android:layout_width="match_parent" + android:layout_height="wrap_content" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" /> + <im.vector.app.features.invite.VectorInviteView android:id="@+id/inviteView" android:layout_width="0dp" @@ -243,12 +251,4 @@ android:background="?vctr_chat_effect_snow_background" android:visibility="invisible" /> - <im.vector.app.features.home.room.detail.composer.VoiceMessageRecorderView - android:id="@+id/voiceMessageRecorderView" - android:layout_width="match_parent" - android:layout_height="wrap_content" - app:layout_constraintBottom_toBottomOf="parent" - app:layout_constraintEnd_toEndOf="parent" - app:layout_constraintStart_toStartOf="parent" /> - </androidx.constraintlayout.widget.ConstraintLayout>