From 7bb84fcf020bbde20f48e89f1542bcded0674453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Sun, 18 Sep 2022 13:55:20 +0200 Subject: [PATCH] Fix icon not visible in call state message MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The call state uses a RelativeLayout with a wrap content height where the state icons (including the progress bar) position was set as above the message. However, this caused the call state to wrap only the text; the icons were indeed above the message, but out of the view boundaries. Now the icons are wrapped in a FrameLayout and the text position is set below that frame layout instead, which causes the RelativeLayout height to correctly wrap its content. Signed-off-by: Daniel Calviño Sánchez --- app/src/main/res/layout/call_states.xml | 50 ++++++++++++++----------- 1 file changed, 28 insertions(+), 22 deletions(-) diff --git a/app/src/main/res/layout/call_states.xml b/app/src/main/res/layout/call_states.xml index 1e2a354d6..71c24b657 100644 --- a/app/src/main/res/layout/call_states.xml +++ b/app/src/main/res/layout/call_states.xml @@ -25,34 +25,40 @@ android:layout_width="match_parent" android:layout_height="wrap_content"> - + - + + + +