陈奇
2018-11-30 c40ab5711d9025a5e25a85b5b24be72cfa90e375
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
29
30
31
32
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:padding="@dimen/x12">
 
    <ImageView
        android:id="@+id/iv"
        android:layout_width="@dimen/x10"
        android:layout_height="@dimen/x10"
        android:layout_centerVertical="true"
        android:src="@mipmap/icon_reddian" />
 
    <TextView
        android:id="@+id/tv_name"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginLeft="@dimen/x8"
        android:layout_toRightOf="@+id/iv"
        android:text="USR001"
        android:textColor="@color/black_txt"
        android:textSize="16sp" />
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:text="连接 >"
        android:textColor="@color/red_txt" />
</RelativeLayout>