41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/background">
|
|
|
|
<androidx.camera.view.PreviewView
|
|
android:id="@+id/previewView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<!-- Oberer Hinweis -->
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="top|center_horizontal"
|
|
android:layout_marginTop="48dp"
|
|
android:text="Karte vor die Kamera halten"
|
|
android:textColor="@color/white"
|
|
android:textSize="15sp"
|
|
android:textStyle="bold"
|
|
android:background="@drawable/scan_label_background"
|
|
android:paddingStart="16dp"
|
|
android:paddingEnd="16dp"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="8dp" />
|
|
|
|
<!-- Abbrechen-Button -->
|
|
<Button
|
|
android:id="@+id/btnCancel"
|
|
android:layout_width="160dp"
|
|
android:layout_height="48dp"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:layout_marginBottom="48dp"
|
|
android:text="Abbrechen"
|
|
android:textColor="@color/white"
|
|
android:backgroundTint="@color/surface"
|
|
android:stateListAnimator="@null" />
|
|
|
|
</FrameLayout>
|