popupp_exercise.xml
1.58 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#D5D5D5"
android:orientation="vertical">
<TextView
android:id="@+id/all_start"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="12dp"
android:paddingTop="12dp"
android:text="全部暂停"
android:gravity="center"
android:background="#ffffff"
android:textColor="@color/color_333333"
android:layout_marginBottom="0.5dp"
android:textSize="18sp" />
<TextView
android:id="@+id/all_delete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="12dp"
android:paddingTop="12dp"
android:text="全部删除"
android:background="#ffffff"
android:gravity="center"
android:textColor="@color/color_333333"
android:textSize="18sp" />
<View
android:layout_width="match_parent"
android:layout_height="5dp"
/>
<TextView
android:id="@+id/cancel_popup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="12dp"
android:paddingTop="12dp"
android:text="取消"
android:background="#ffffff"
android:gravity="center"
android:textColor="@color/color_333333"
android:textSize="18sp" />
</LinearLayout>