Почему я получаю зеленую часть в представлении - PullRequest
0 голосов
/ 21 декабря 2018

После того, как я попробовал все возможное, чтобы перекрыть зеленую часть в моем виде, я все еще получаю эту маленькую часть, Как мне избавиться от этого?

<?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>

Here is the Green thing that I want to get rid of.

1 Ответ

0 голосов
/ 21 декабря 2018

Я исправил эту проблему, прежде чем вы можете добавить этот XML и тестирование:

<?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"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".MainActivity">




<fragment
    android:id="@+id/barcode_scanner"
    android:name="info.androidhive.barcode.BarcodeReader"
    android:layout_width="350dp"
    android:layout_height="350dp"
    android:layout_centerInParent="true"
    app:auto_focus="true"
    app:use_flash="false" />

<info.androidhive.barcode.ScannerOverlay
    android:id="@+id/b"
    android:layout_width="350dp"
    android:layout_height="350dp"
    android:layout_centerInParent="true"
    android:background="#916e6e6e"
    app:line_color="#7323DC"
    app:line_speed="6"
    app:line_width="4"
    app:square_height="450"
    app:square_width="350" />


   </RelativeLayout>

Happy Coding;)

...