24 lines
929 B
XML
24 lines
929 B
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">
|
|
|
|
<androidx.camera.view.PreviewView
|
|
android:id="@+id/previewView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<com.king.view.viewfinderview.ViewfinderView
|
|
android:id="@+id/viewfinderView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<ImageView
|
|
android:id="@+id/ivFlashlight"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_marginTop="@dimen/camera_scan_flashlight_margin_top"
|
|
android:contentDescription="@null"
|
|
android:src="@drawable/camera_scan_flashlight_selector" />
|
|
</FrameLayout> |