lmw
2025-04-24 718f31c92e2029d05260810435a2c70cef6e6ce5
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:background="@color/transparent"
    android:layout_height="match_parent">
 
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="35dp"
        android:layout_marginRight="35dp"
        android:background="@drawable/base_rauis_for_white"
        android:gravity="center"
        android:orientation="vertical"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent">
 
        <LinearLayout
            android:id="@+id/ll_common"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">
 
            <ImageView
                android:id="@+id/img_close"
                android:layout_width="27dp"
                android:layout_height="27dp"
                android:layout_gravity="right"
                android:layout_marginRight="13dp"
                android:layout_marginTop="18dp"
                android:src="@mipmap/ic_dialog_close" />
 
            <ImageView
                android:id="@+id/img_title_view"
                android:layout_gravity="center"
                android:layout_marginTop="-15dp"
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:src="@mipmap/icon_fuchuang"
                android:layout_marginBottom="15dp"
                />
 
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginLeft="25dp"
                android:layout_marginRight="25dp"
                android:orientation="vertical">
 
                <TextView
                    android:id="@+id/text_title"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:singleLine="true"
                    android:text="浮窗权限未获取"
                    android:textStyle="bold"
                    android:textColor="#000000"
                    android:textSize="19sp" />
 
 
                <TextView
                    android:id="@+id/text_dec"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:gravity="center"
                    android:layout_marginTop="10dp"
                    android:text="你的手机没有授权微信获得浮窗权限,音乐浮窗不能正常使用"
                    android:textSize="15sp" />
 
 
            </LinearLayout>
        </LinearLayout>
 
 
        <LinearLayout
            android:id="@+id/ll_vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="30dp"
            android:layout_marginBottom="30dp"
            android:layout_marginLeft="35dp"
            android:layout_marginRight="35dp"
            android:gravity="center"
            android:visibility="visible"
            android:orientation="vertical">
 
            <TextView
                android:id="@+id/btn_vertical_sure"
                android:layout_width="wrap_content"
                android:layout_height="44dp"
                android:minWidth="110dp"
                android:paddingLeft="37dp"
                android:paddingRight="37dp"
                android:gravity="center"
                android:background="@drawable/bg_yellow_22dp"
                android:text="确定"
                android:textColor="#000000" />
 
 
 
        </LinearLayout>
 
 
    </LinearLayout>
 
 
</RelativeLayout>