wjc
2025-05-07 5d3efa4c93dde0cde474951e5310bb72ebbf4184
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="50dp"
    >
 
        <RelativeLayout
            android:id="@+id/rl_back"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginStart="32dp">
 
            <TextView
                android:id="@+id/tv_text_cancel"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:text="@string/scan_cancel"
                android:textColor="#000000"
                android:textSize="36sp" />
        </RelativeLayout>
 
        <TextView
            android:id="@+id/tv_text_scan"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:text="@string/scan_title"
            android:textColor="#000000"
            android:textSize="36sp" />
 
 
</RelativeLayout>