Files
EasyPlayerPro-Android/EasyPlayerPro/src/main/res/layout/activity_scan_qr.xml
2025-12-10 23:03:26 +08:00

30 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.budiyev.android.codescanner.CodeScannerView
android:id="@+id/scanner_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:autoFocusButtonColor="@android:color/white"
app:autoFocusButtonVisible="false"
app:flashButtonColor="@android:color/white"
app:flashButtonVisible="true"
app:frameAspectRatioHeight="1"
app:frameAspectRatioWidth="1"
app:frameColor="@android:color/white"
app:frameCornersSize="50dp"
app:frameSize="0.75"
app:frameThickness="2dp"
app:maskColor="#66000000" />
<ImageView
android:layout_width="56dp"
android:layout_height="56dp"
android:onClick="onClose"
android:padding="18dp"
android:src="@drawable/new_nav_back" />
</FrameLayout>