huo_sdk_dialog_notice.xml
2.8 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_margin="20dp"
android:padding="10dp"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/huo_sdk_shape_circle_rect_white"
android:orientation="vertical"
android:layout_margin="10dp"
tools:ignore="UselessParent">
<TextView
android:id="@+id/huo_sdk_title_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:padding="5dp"
android:text="公告"
android:textColor="@color/huo_sdk_orange"
android:singleLine="true"
android:maxLines="1"
android:textSize="14sp"
android:layout_marginTop="5dp" />
<View
android:layout_width="wrap_content"
android:layout_height="1px"
android:background="@color/huo_sdk_gray7f" />
<TextView
android:id="@+id/huo_sdk_time_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="5dp"
android:gravity="center"
android:textColor="@color/huo_sdk_gray7f"
android:textSize="10sp" />
<TextView
android:layout_marginTop="5dp"
android:id="@+id/huo_sdk_content_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:minHeight="50dp"
android:autoLink="web"
android:gravity="center|top|left"
android:textColor="#666666"
android:textSize="12sp" />
<View
android:layout_width="wrap_content"
android:layout_height="1px"
android:background="@color/huo_sdk_gray7f" />
<LinearLayout
android:id="@+id/huo_sdk_layout_dialog"
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal">
<TextView
android:id="@+id/huo_sdk_confirm_tv"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:text="我知道了"
android:textColor="@color/huo_sdk_orange" />
</LinearLayout>
</LinearLayout>
</LinearLayout>