34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
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">
|
|
|
|
<androidx.camera.view.PreviewView
|
|
android:id="@+id/previewView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<com.king.zxing.ViewfinderView
|
|
android:id="@+id/viewfinderView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:labelText="@string/tips_scan_code"
|
|
app:labelTextSize="@dimen/size_14sp"
|
|
app:laserColor="@color/colorAccent"
|
|
app:frameColor="@color/colorPrimary"
|
|
app:cornerColor="@color/colorPrimary"
|
|
app:labelTextLocation="bottom"
|
|
app:laserStyle="grid" />
|
|
<ImageView
|
|
android:id="@+id/ivFlashlight"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/zxl_flashlight_selector"
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
android:layout_marginTop="170dp" />
|
|
<include layout="@layout/toolbar_capture"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |