После того, как я попробовал все возможное, чтобы перекрыть зеленую часть в моем виде, я все еще получаю эту маленькую часть, Как мне избавиться от этого?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">
<fragment
android:id="@+id/barcode_scanner"
android:name="info.androidhive.barcode.BarcodeReader"
android:layout_width="350dp"
android:layout_height="300dp"
android:layout_centerInParent="true"
android:layout_margin="@dimen/activity_vertical_margin"
app:auto_focus="true"
app:use_flash="false" />
<info.androidhive.barcode.ScannerOverlay
android:id="@+id/b"
android:layout_width="350dp"
android:layout_height="300dp"
android:layout_centerInParent="true"
android:layout_margin="@dimen/activity_vertical_margin"
android:background="#916e6e6e"
app:line_color="#7323DC"
app:line_speed="6"
app:line_width="2"
app:square_height="450"
app:square_width="350" />
</RelativeLayout>