<?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>
|