mch_dialog_add_account.xml
3.6 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
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/mch_choosepay_backgrount">
<TextView
android:layout_width="match_parent"
android:layout_height="45dp"
android:gravity="center"
android:text="输入名字"
android:textColor="#333333"
android:textSize="18dp"/>
<TextView
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:text="输入新增小号名称"
android:textColor="#ff666666"
android:textSize="11dp"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#ffffff">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/mch_et_bg">
<RelativeLayout
android:id="@+id/btn_rl_mch_clear"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/mch_circle_clear" />
</RelativeLayout>
<EditText
android:id="@+id/et_mch_account"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:background="@drawable/mch_et_bg"
android:layout_toLeftOf="@+id/btn_rl_mch_clear"
android:hint="请输入名称"
android:maxLines="1"
android:maxLength="10"
android:paddingLeft="10dp"
android:singleLine="true"
android:textColor="#333333"
android:textColorHint="#999999"
android:textSize="14dp">
</EditText>
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_marginBottom="26dp"
android:orientation="horizontal">
<Button
android:id="@+id/btn_cancle"
android:layout_width="90dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="取消"
android:textSize="15dp"
android:layout_marginLeft="25dp"
android:background="@drawable/button2"
android:textColor="#ffcccccc"/>
<Button
android:id="@+id/btn_add"
android:layout_width="90dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:layout_marginLeft="25dp"
android:layout_marginRight="22dp"
android:background="@drawable/button1"
android:text="确认"
android:textSize="15dp"
android:textColor="#ffffffff"/>
</LinearLayout>
</LinearLayout>