dialog_gift_get.xml
1.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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:background="@drawable/round_white_radius"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="300dp"
android:layout_height="150dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:textColor="#000000"
android:textStyle="bold"
android:text="礼包码已复制"
/>
<TextView
android:id="@+id/dialog_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textSize="12sp"
android:textColor="#000000"
/>
<View
android:layout_width="match_parent"
android:layout_height="0.5dp"
android:layout_alignParentBottom="true"
android:background="#F5F5F5"
android:layout_marginBottom="50dp"
/>
<TextView
android:id="@+id/dialog_sure"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="知道了"
android:textColor="#FF7F00"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
android:layout_marginBottom="15dp"
/>
</RelativeLayout>
</RelativeLayout>