mch_item_qq.xml
3.3 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:roundiv="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_marginRight="13dp"
android:layout_marginLeft="13dp"
android:layout_height="75dp">
<com.mchsdk.paysdk.view.round.NiceImageView
android:layout_width="44dp"
android:layout_height="44dp"
android:id="@+id/img_icon"
android:src="@drawable/mch_nav_pic_touxiang"
android:scaleType="fitXY"
android:layout_marginRight="10dp"
android:layout_centerVertical="true"
/>
<LinearLayout
android:layout_width="wrap_content"
android:orientation="horizontal"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:layout_height="28dp">
<TextView
android:id="@+id/btn_mch_ignore"
android:layout_width="64dp"
android:layout_height="match_parent"
android:background="@drawable/mch_btn_hui_bg"
android:text="忽略"
android:gravity="center"
android:textColor="#999999"
android:layout_marginRight="13dp"
android:textSize="15dp"
/>
<TextView
android:id="@+id/btn_mch_ok"
android:layout_width="64dp"
android:layout_height="match_parent"
android:background="@drawable/mch_btn_lan_bg1"
android:text="同意"
android:gravity="center"
android:textColor="@color/mch_yanse"
android:textSize="15dp"
/>
</LinearLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/img_icon"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="用户名"
android:textSize="15dp"
android:textColor="#333333"
android:singleLine="true"
android:ellipsize="end"
android:layout_marginBottom="3dp"
/>
<TextView
android:id="@+id/tv_mc_vip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/tv_name"
android:text="LV 0"
android:singleLine="true"
android:ellipsize="end"
android:textColor="#666666"
android:textSize="12dp"
/>
</RelativeLayout>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_alignParentBottom="true"
android:background="#F2F2F2"
/>
</RelativeLayout>
</LinearLayout>