activity_judge.xml
2.66 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:ignore="UseCompoundDrawables,HardcodedText,SmallSp,ContentDescription">
<androidx.appcompat.widget.Toolbar
android:background="@color/white"
app:contentInsetStart="0dp"
android:layout_width="match_parent"
android:layout_height="40dp">
<ImageView
android:id="@+id/ivBack"
android:layout_width="30dp"
android:layout_height="36dp"
android:layout_centerVertical="true"
android:layout_marginStart="5dp"
android:padding="10dp"
android:src="@mipmap/icon_back" />
</androidx.appcompat.widget.Toolbar>
<FrameLayout
android:background="@color/white"
android:padding="8dp"
android:layout_margin="16dp"
android:layout_width="match_parent"
android:layout_height="0px"
android:layout_weight="1">
<ImageView
android:id="@+id/ivPic"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<FrameLayout
android:id="@+id/flRects"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</FrameLayout>
<LinearLayout
android:orientation="horizontal"
android:gravity="center_vertical"
android:paddingHorizontal="16dp"
android:background="@color/white"
android:layout_width="match_parent"
android:layout_height="64dp">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/btnSelectAll"
android:text="全选"
android:textSize="16sp"
android:textColor="#333"
android:gravity="center_vertical"
android:paddingHorizontal="8dp"
android:paddingVertical="4dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<Space style="@style/empty_space"/>
<TextView
android:id="@+id/btnAdd"
android:text="加入错题"
android:textSize="16sp"
android:textColor="@color/white"
android:gravity="center"
android:background="@drawable/shape_radius_5"
android:backgroundTint="#1C90F3"
android:layout_width="112dp"
android:layout_height="36dp"/>
</LinearLayout>
</LinearLayout>