dialog_open_lottery.xml
2.95 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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tool="http://schemas.android.com/tools"
android:background="@color/black_half">
<FrameLayout
android:id="@+id/fl_result"
android:layout_width="match_parent"
android:layout_height="match_parent"
tool:visibility="visible"
android:visibility="gone">
<View
android:id="@+id/view_bg"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:background="@drawable/bg_dialog_open_lottery"
android:minHeight="262dp"
android:paddingBottom="30dp">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:layout_marginTop="30dp"
android:layout_marginBottom="30dp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/recyclerview"
android:layout_centerHorizontal="true"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_one_more"
android:layout_width="120dp"
android:layout_height="50dp"
android:background="@drawable/bg_btn_yellow"
android:gravity="center"
android:layout_marginRight="10dp"
android:text="再开1个"
android:textColor="@color/white"
android:textSize="15sp" />
<TextView
android:id="@+id/tv_ok"
android:layout_width="120dp"
android:layout_height="50dp"
android:background="@drawable/bg_btn_blue"
android:gravity="center"
android:text="确定"
android:textColor="@color/white"
android:textSize="15sp" />
</LinearLayout>
</RelativeLayout>
</FrameLayout>
<com.opensource.svgaplayer.SVGAImageView
android:id="@+id/svga_iv"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:autoPlay="true"
app:loopCount="1" />
</FrameLayout>