JLChen
2021-01-04 ed86fe7ed952bb2151aac8841134246bbde152c9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_marginRight="5dp">
 
    <ImageView
        android:id="@+id/contactChatDelete"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_marginRight="3dp"
        android:gravity="center"
        android:src="@drawable/chat_group_delete" />
 
    <TextView
        android:id="@+id/sipUri"
        style="@style/contact_name_list_cell_font"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_centerVertical="true"
        android:layout_marginRight="5dp"
        android:layout_toEndOf="@+id/contactChatDelete"
        android:layout_toRightOf="@+id/contactChatDelete"
        android:gravity="center"
        android:lines="1"
        android:scrollHorizontally="true" />
 
</RelativeLayout>