|
@ -0,0 +1,92 @@
|
|
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
4
|
xmlns:tools="http://schemas.android.com/tools"
|
|
5
|
android:id="@+id/lLayout_bg"
|
|
6
|
android:layout_width="272dp"
|
|
7
|
android:layout_height="wrap_content"
|
|
8
|
android:orientation="vertical">
|
|
9
|
|
|
10
|
<LinearLayout
|
|
11
|
android:layout_width="match_parent"
|
|
12
|
android:layout_height="wrap_content"
|
|
13
|
android:background="@drawable/common_alert_bottom_shape"
|
|
14
|
android:orientation="vertical"
|
|
15
|
android:paddingTop="20dp">
|
|
16
|
|
|
17
|
<TextView
|
|
18
|
android:id="@+id/txt_title"
|
|
19
|
android:layout_width="match_parent"
|
|
20
|
android:layout_height="wrap_content"
|
|
21
|
android:paddingLeft="20dp"
|
|
22
|
android:paddingRight="20dp"
|
|
23
|
android:textAlignment="center"
|
|
24
|
android:textColor="#444444"
|
|
25
|
android:textSize="15sp"
|
|
26
|
android:visibility="gone"
|
|
27
|
tools:text="更新提示 3.5.2"
|
|
28
|
tools:visibility="visible" />
|
|
29
|
|
|
30
|
<TextView
|
|
31
|
android:id="@+id/txt_msg"
|
|
32
|
android:layout_width="match_parent"
|
|
33
|
android:layout_height="wrap_content"
|
|
34
|
android:layout_marginLeft="18dp"
|
|
35
|
android:layout_marginTop="12dp"
|
|
36
|
android:layout_marginRight="18dp"
|
|
37
|
android:gravity="center|left"
|
|
38
|
android:textColor="#444444"
|
|
39
|
android:textSize="13sp"
|
|
40
|
android:visibility="gone"
|
|
41
|
tools:text="1-新增“聊聊”新能源车主社区版块。可以通过短图文和视频的方式,聊聊你的新能源汽车和生活\n\n2-修改已知BUG"
|
|
42
|
tools:visibility="visible" />
|
|
43
|
|
|
44
|
<View
|
|
45
|
android:layout_width="match_parent"
|
|
46
|
android:layout_height="1dp"
|
|
47
|
android:layout_marginTop="20dp"
|
|
48
|
android:background="@color/ui_line" />
|
|
49
|
|
|
50
|
<LinearLayout
|
|
51
|
android:layout_width="match_parent"
|
|
52
|
android:layout_height="40dp"
|
|
53
|
android:gravity="center_horizontal"
|
|
54
|
android:orientation="horizontal">
|
|
55
|
|
|
56
|
<TextView
|
|
57
|
android:id="@+id/btn_neg"
|
|
58
|
android:layout_width="match_parent"
|
|
59
|
android:layout_height="match_parent"
|
|
60
|
android:layout_weight="1"
|
|
61
|
android:gravity="center"
|
|
62
|
android:textColor="#999999"
|
|
63
|
android:textSize="14sp"
|
|
64
|
android:visibility="gone"
|
|
65
|
tools:text="取消"
|
|
66
|
tools:visibility="visible" />
|
|
67
|
|
|
68
|
<View
|
|
69
|
android:id="@+id/btn_line"
|
|
70
|
android:layout_width="1dp"
|
|
71
|
android:layout_height="match_parent"
|
|
72
|
android:background="@color/ui_line"
|
|
73
|
android:visibility="gone"
|
|
74
|
tools:visibility="visible" />
|
|
75
|
|
|
76
|
<TextView
|
|
77
|
android:id="@+id/btn_pos"
|
|
78
|
android:layout_width="match_parent"
|
|
79
|
android:layout_height="match_parent"
|
|
80
|
android:layout_weight="1"
|
|
81
|
android:gravity="center"
|
|
82
|
android:textColor="@color/ui_green"
|
|
83
|
android:textSize="14sp"
|
|
84
|
android:visibility="gone"
|
|
85
|
tools:text="确定"
|
|
86
|
tools:visibility="visible" />
|
|
87
|
|
|
88
|
</LinearLayout>
|
|
89
|
</LinearLayout>
|
|
90
|
|
|
91
|
|
|
92
|
</LinearLayout>
|