keepass-fidelity/app/src/main/res/layout/frag_scanner.xml

36 lines
1.4 KiB
XML
Raw Normal View History

2024-03-17 14:50:15 +01:00
<?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" />
2024-03-17 15:40:14 +01:00
<net.helcel.fidelity.activity.view.ScannerView
2024-03-17 14:50:15 +01:00
android:layout_width="match_parent"
2024-03-17 15:40:14 +01:00
android:layout_height="match_parent" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/btnScanDone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2024-03-17 14:50:15 +01:00
android:layout_alignParentBottom="true"
2024-03-17 15:40:14 +01:00
android:layout_centerHorizontal="true"
android:layout_margin="24dp"
android:contentDescription="@string/manual" />
<com.google.android.material.progressindicator.CircularProgressIndicator
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_margin="28dp"
android:indeterminate="true" />
2024-03-17 14:50:15 +01:00
</RelativeLayout>