dialog_tip.xml
3.1 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
<?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="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"
android:orientation="vertical">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/round_top_shap"
android:paddingBottom="@dimen/ui_DIMEN_14.0PX"
android:paddingTop="@dimen/ui_DIMEN_14.0PX">
<TextView
android:id="@+id/tv_tip_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:textColor="@color/white"
android:textSize="@dimen/ui_DIMEN_28.0PX"
tools:text="权限受限!"/>
<TextView
android:id="@+id/tv_tip_closed"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:background="@mipmap/dialog_tip_close"
android:visibility="invisible"/>
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/round_bottom_shap"
android:gravity="center"
android:orientation="vertical">
<TextView
android:id="@+id/tv_tip_tip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="@dimen/ui_DIMEN_46.0PX"
android:paddingLeft="@dimen/ui_default_padding"
android:paddingRight="@dimen/ui_default_padding"
android:paddingTop="@dimen/ui_DIMEN_44.0PX"
android:textColor="@color/black"
android:textSize="@dimen/ui_DIMEN_28.0PX"
tools:text="您的账号已在其他设备登陆,如非本人操作,请在重新登陆后修改登录密码,保障账户安全"/>
<TextView
android:id="@+id/tv_tip_btn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/ui_DIMEN_36.0PX"
android:background="@drawable/selector_bottom_btn_red"
android:gravity="center"
android:minWidth="@dimen/ui_DIMEN_190.0PX"
android:paddingBottom="@dimen/ui_DIMEN_10.0PX"
android:paddingLeft="@dimen/ui_default_padding"
android:paddingRight="@dimen/ui_default_padding"
android:paddingTop="@dimen/ui_DIMEN_10.0PX"
android:textColor="@color/ui_white"
android:textSize="@dimen/ui_DIMEN_28.0PX"
android:visibility="gone"
tools:text="登陆"/>
</LinearLayout>
</LinearLayout>