如何从 ViewFinder 自定义 zxing 条码扫描器的捕获屏幕边框

How to Customize the capture screen border of zxing barcode scanner from ViewFinder

 <?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <com.journeyapps.barcodescanner.BarcodeView
            android:id="@+id/zxing_barcode_surface"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:zxing_framing_rect_height="220dp"
            app:zxing_framing_rect_width="250dp" />


        <com.journeyapps.barcodescanner.ViewfinderView
            android:id="@+id/zxing_viewfinder_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:zxing_possible_result_points="@color/zxing_custom_possible_result_points"
            app:zxing_result_view="@color/zxing_custom_result_view"
            app:zxing_viewfinder_laser="@color/zxing_custom_viewfinder_laser"
            app:zxing_viewfinder_mask="@color/zxing_custom_viewfinder_mask" />
    </RelativeLayout>

</merge>

我想自定义条码采集区域,我用的是zxing内嵌条码,请问如何自己制作条码区域的边框。我只知道对 ViewFinder class 进行一些更改,但是 ViewFinder class 在 jar 库中的库中,所以我该如何更改它?

我只想制作自定义条码边框

只需将 #00000000 设置为 app:zxing_viewfinder_mask 的值,并添加一个包含遮罩的 ImageView

app:zxing_viewfinder_mask="#00000000"

实际上您可以覆盖自己 colors.xml 文件中的颜色 即 <color name="viewfinder_border">#00d1cf</color>