18 lines
784 B
XML
18 lines
784 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent">
|
||
|
|
<androidx.camera.view.PreviewView
|
||
|
|
android:id="@+id/previewView"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent" >
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/captureButton"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_gravity="center_horizontal|bottom"
|
||
|
|
android:text="@string/image_capture_button_text" />
|
||
|
|
</androidx.camera.view.PreviewView>
|
||
|
|
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|