activity_judge.xml
1.52 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
<?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>