diff --git a/app/src/main/res/layout-land/voip_conference_active_speaker.xml b/app/src/main/res/layout-land/voip_conference_active_speaker.xml
index fdc7030d7..ea023c7f9 100644
--- a/app/src/main/res/layout-land/voip_conference_active_speaker.xml
+++ b/app/src/main/res/layout-land/voip_conference_active_speaker.xml
@@ -54,13 +54,15 @@
diff --git a/app/src/main/res/layout/chat_message_reply_bubble.xml b/app/src/main/res/layout/chat_message_reply_bubble.xml
index f1ce24a4b..3c8521d13 100644
--- a/app/src/main/res/layout/chat_message_reply_bubble.xml
+++ b/app/src/main/res/layout/chat_message_reply_bubble.xml
@@ -69,6 +69,8 @@
android:layout_height="wrap_content"
android:singleLine="false"
android:layout_marginTop="5dp"
+ android:maxLines="5"
+ android:ellipsize="end"
style="@style/chat_message_reply_font"
android:text="@{data.text, default=`Lorem ipsum`}"/>
diff --git a/app/src/main/res/layout/chat_room_imdn_fragment.xml b/app/src/main/res/layout/chat_room_imdn_fragment.xml
index 9086e0823..d8bf44461 100644
--- a/app/src/main/res/layout/chat_room_imdn_fragment.xml
+++ b/app/src/main/res/layout/chat_room_imdn_fragment.xml
@@ -9,17 +9,17 @@
type="org.linphone.activities.main.chat.viewmodels.ImdnViewModel" />
-
+ android:layout_height="match_parent">
+ android:orientation="horizontal"
+ app:layout_constraintTop_toTopOf="parent">
+ app:data="@{viewModel.chatMessageViewModel}"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/top_bar"
+ app:layout_constraintHeight_max="200dp"/>
+ android:layout_height="0dp"
+ app:layout_constraintTop_toBottomOf="@id/message"
+ app:layout_constraintBottom_toBottomOf="parent"/>
-
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/recording_list_cell.xml b/app/src/main/res/layout/recording_list_cell.xml
index 87244c101..d0d13a014 100644
--- a/app/src/main/res/layout/recording_list_cell.xml
+++ b/app/src/main/res/layout/recording_list_cell.xml
@@ -83,26 +83,21 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
- android:layout_alignParentTop="true">
+ android:layout_alignParentTop="true"
+ android:layout_toLeftOf="@id/playing_info"
+ android:layout_marginEnd="5dp">
-
-
-
-
+ android:maxLines="1"
+ android:ellipsize="end"
+ android:text="@{data.name + `-` + data.formattedDate, default=`This is a sample meeeting recording - 13:50`}" />
-
-
-
-
+ android:text="@{data.formattedPosition + `/` + data.formattedDuration, default=`00:00/00:04`}" />
diff --git a/app/src/main/res/layout/voip_conference_active_speaker.xml b/app/src/main/res/layout/voip_conference_active_speaker.xml
index 659d5689d..8a420195b 100644
--- a/app/src/main/res/layout/voip_conference_active_speaker.xml
+++ b/app/src/main/res/layout/voip_conference_active_speaker.xml
@@ -61,13 +61,15 @@