mch_item_bb.xml
1.8 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
<?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_height="50dp"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="0.00"
android:textColor="@color/mch_yanse"
android:textSize="15dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:id="@+id/tv_mch_yue" />
<com.mchsdk.paysdk.view.round.NiceImageView
android:layout_width="27dp"
android:layout_height="27dp"
android:id="@+id/img_icon"
android:scaleType="fitXY"
android:src="#e2e2e2"
android:layout_centerVertical="true"
/>
<TextView
android:id="@+id/tv_mch_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"
android:layout_toRightOf="@+id/img_icon"
android:layout_centerVertical="true"
android:text="游戏名称"
android:textColor="#222222"
android:textSize="14dp" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#F2F2F2"
android:layout_alignParentBottom="true"
/>
</RelativeLayout>
</LinearLayout>