<?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类有一些改变,但ViewFinder类在jar库的库中,所以我怎么能改变呢?
我只想制作自定义条形码边框
答案 0 :(得分:1)
实际上,您可以覆盖自己的colors.xml文件中的颜色
即。
<color name="viewfinder_border">#00d1cf</color>
答案 1 :(得分:0)
只需将#00000000设置为app:zxing_viewfinder_mask的值,然后添加包含遮罩的ImageView
app:zxing_viewfinder_mask="#00000000"