POZO_Retail/app/build/intermediates/merged-not-compiled-resources/release/layout/scanner_layout.xml

38 lines
1.2 KiB
XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:layout_height="match_parent"
android:orientation="vertical">
<androidx.camera.view.PreviewView
android:id="@+id/cameraPreview"
android:layout_width="match_parent"
android:layout_height="@dimen/sp_150" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="center">
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/switchCameraButton"
android:text="Switch Camera" />
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/toggleTorchButton"
android:text="Toggle Torch" />
<Button
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/cancelScanButton"
android:text="Cancel" />
</LinearLayout>
</LinearLayout>