dermy-app/app/src/main/res/layout/activity_main.xml

18 lines
784 B
XML
Raw Normal View History

2024-06-03 20:56:01 +00:00
<?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>