-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathduihua.aly
81 lines (81 loc) · 1.82 KB
/
duihua.aly
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
{
LinearLayout;
layout_width="fill";
orientation="horizontal";
layout_height="fill";
backgroundColor="#696969";
{
CardView;
radius="10dp";
layout_height="fill";
layout_width="fill";
{
TextView;
backgroundColor="#000000";
layout_width="fill";
textColor="#FFFFFF";
textSize=getsize(18);
text=" 提示";
layout_height="25dp";
};
{
LinearLayout;
orientation="vertical";
layout_height="fill";
layout_width="fill";
{
TextView;
text="提示内容";
id="提示内容";
layout_margin="8%w";
};
{
LinearLayout;
layout_height="10%h";
layout_width="fill";
{
LinearLayout;
layout_height="fill";
layout_width="50%w";
{
CardView;
radius="10dp";
layout_margin="8%w";
layout_width="24%w";
layout_gravity="center";
layout_height="6%h";
{
TextView;
layout_gravity="center";
textColor="#000000";
textSize="22sp";
onClick=function 关闭提示() end;
text="取消";
};
};
};
{
LinearLayout;
layout_height="fill";
layout_width="50%w";
{
CardView;
radius="10dp";
layout_margin="8%w";
layout_width="24%w";
layout_gravity="center";
layout_height="6%h";
{
TextView;
layout_gravity="center";
textColor="#000000";
textSize="22sp";
onClick=function UpRoleData() end;
text="确定";
};
};
};
};
};
};
};