mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-05-03 15:26:27 +00:00
Fixed small UI issue if SIP URI is too long
This commit is contained in:
parent
7e0c6a23a9
commit
40e9dfc522
1 changed files with 3 additions and 1 deletions
|
|
@ -35,14 +35,16 @@
|
||||||
<androidx.appcompat.widget.AppCompatTextView
|
<androidx.appcompat.widget.AppCompatTextView
|
||||||
style="@style/default_text_style"
|
style="@style/default_text_style"
|
||||||
android:id="@+id/number_or_address"
|
android:id="@+id/number_or_address"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginStart="10dp"
|
android:layout_marginStart="10dp"
|
||||||
|
android:layout_marginEnd="10dp"
|
||||||
android:text="@{model.displayedValue, default=`sip:johndoe@sip.linphone.org`}"
|
android:text="@{model.displayedValue, default=`sip:johndoe@sip.linphone.org`}"
|
||||||
android:textSize="14sp"
|
android:textSize="14sp"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
android:ellipsize="end"
|
android:ellipsize="end"
|
||||||
app:layout_constraintStart_toStartOf="parent"
|
app:layout_constraintStart_toStartOf="parent"
|
||||||
|
app:layout_constraintEnd_toStartOf="@id/call"
|
||||||
app:layout_constraintTop_toBottomOf="@id/header"/>
|
app:layout_constraintTop_toBottomOf="@id/header"/>
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue