package_remove.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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:background="@android:color/white"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#4876FF"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:text="自动清理"
android:textColor="@android:color/white" />
<ImageView
android:layout_width="45dp"
android:layout_height="45dp"
android:layout_centerInParent="true"
android:layout_gravity="center_horizontal"
android:layout_marginTop="60dp"
android:background="@drawable/lajixiang" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="40dp"
android:layout_marginTop="40dp"
android:gravity="center_horizontal"
android:text="检测到应用已卸载,清理残留"
android:textColor="@android:color/white"
android:textSize="16sp" />
</LinearLayout>
<Button
android:id="@+id/clean_now"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_margin="10dp"
android:background="#43CD80"
android:text="立即清理"
android:textColor="@android:color/white"
android:textSize="16sp" />
</LinearLayout>