21 lines
748 B
XML
21 lines
748 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/fl_preview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="531dp"
|
|
android:layout_marginHorizontal="60dp"
|
|
android:layout_marginTop="120dp"
|
|
android:layout_marginBottom="90dp"
|
|
android:visibility="visible">
|
|
|
|
<androidx.camera.view.PreviewView
|
|
android:id="@+id/previewView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="30dp"
|
|
android:background="@drawable/preview_border" />
|
|
</FrameLayout> |