22 lines
813 B
XML
22 lines
813 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical"
|
||
|
tools:context=".activity.fragment.Scanner">
|
||
|
|
||
|
<androidx.camera.view.PreviewView
|
||
|
android:id="@+id/cameraView"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
|
||
|
<com.google.android.material.textview.MaterialTextView
|
||
|
android:id="@+id/bottomText"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="64dp"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:background="#ffffff"
|
||
|
android:textSize="24sp" />
|
||
|
|
||
|
</RelativeLayout>
|