item_tips_layout.xml
1.83 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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#ffffffff"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:paddingBottom="20dp"
android:id="@+id/back_ground"
android:src="@drawable/tip_bg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true"/>
<ImageView
android:layout_alignRight="@+id/back_ground"
android:padding="5dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/close_button"
android:id="@+id/imageView2"/>
<ImageView
android:id="@+id/ack_btn"
android:layout_marginBottom="32dp"
android:layout_centerHorizontal="true"
android:layout_alignBottom="@+id/back_ground"
android:src="@drawable/ack"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/title_tip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="开场时间"
android:textColor="#000"
android:textSize="17sp"
android:layout_marginTop="140dp"
android:layout_centerHorizontal="true"
/>
<TextView
android:id="@+id/time_tv"
android:layout_marginTop="8dp"
android:layout_centerHorizontal="true"
android:text="12:00:333"
android:layout_below="@id/title_tip"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RelativeLayout>