mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
Hide imdn status for received messages in 1-1 conversation + always show date/time & imdn status even for grouped messages
This commit is contained in:
parent
940a6b0577
commit
72daf9ebd2
2 changed files with 3 additions and 6 deletions
|
|
@ -238,8 +238,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@{model.time, default=`13:40`}"
|
||||
android:textSize="12sp"
|
||||
android:visibility="@{!model.groupedWithNextMessage ? View.VISIBLE : View.GONE}"/>
|
||||
android:textSize="12sp" />
|
||||
|
||||
<ImageView
|
||||
style="@style/default_text_style_300"
|
||||
|
|
@ -250,7 +249,7 @@
|
|||
android:layout_marginStart="5dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:src="@{model.statusIcon, default=@drawable/checks}"
|
||||
android:visibility="@{!model.groupedWithNextMessage ? View.VISIBLE : View.GONE}"
|
||||
android:visibility="@{model.isFromGroup ? View.VISIBLE : View.GONE}"
|
||||
app:tint="?attr/color_main1_500" />
|
||||
|
||||
</LinearLayout>
|
||||
|
|
|
|||
|
|
@ -201,8 +201,7 @@
|
|||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@{model.time, default=`13:40`}"
|
||||
android:textSize="12sp"
|
||||
android:visibility="@{!model.groupedWithNextMessage ? View.VISIBLE : View.GONE}"/>
|
||||
android:textSize="12sp" />
|
||||
|
||||
<ImageView
|
||||
style="@style/default_text_style_300"
|
||||
|
|
@ -213,7 +212,6 @@
|
|||
android:layout_marginStart="5dp"
|
||||
android:layout_marginTop="2dp"
|
||||
android:src="@{model.statusIcon, default=@drawable/checks}"
|
||||
android:visibility="@{!model.groupedWithNextMessage ? View.VISIBLE : View.GONE}"
|
||||
app:tint="?attr/color_main1_500" />
|
||||
|
||||
</LinearLayout>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue