Привязка данных Android не может идентифицировать внутри для zxing-android-embedded

#android #android-studio #android-layout #data-binding #android-databinding

#Android #android-studio #android-layout #привязка данных #android-привязка данных

Вопрос:

Ссылка на зависимость: journeyapps / zxing-android-embedded

Описание проблемы: Я новичок в привязке данных Android и не могу привязать идентификатор ресурса zxing_viewfinder_view, который находится внутри <merge> </merge>

Скриншот

Вот мой код для понимания.

activity_scan_qr.xml

     <LinearLayout
        android:id="@ id/ll_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        android:layout_below="@ id/ll_header"
        android:background="@color/color_white"
        android:gravity="center"
        android:orientation="vertical">

        <com.journeyapps.barcodescanner.DecoratedBarcodeView
            android:id="@ id/zxing_barcode_scanner"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:zxing_scanner_layout="@layout/view_custom_qr_scanner"/>

    </LinearLayout>
  

view_custom_qr_scanner.xml

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

<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="250dp"
    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_laser_visibility="true"
    app:zxing_viewfinder_mask="@color/zxing_custom_viewfinder_mask" />

<TextView
    android:id="@ id/zxing_status_view"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|center_horizontal"
    android:background="@color/zxing_transparent"
    android:text="Place a QR code inside the scan area."
    android:textColor="@color/zxing_status_text" />

</merge>
  

ScanQRActivity.java

 public class ScanQRActivity extends AppCompatActivity implements DecoratedBarcodeView.TorchListener {
    public static final String TAG = ScanQRActivity.class.getSimpleName();
    Context mContext;
    Activity mActivity;
    ActivityScanQrBinding binding;

    ActionBar actionBar;

    private CaptureManager capture;
    boolean bFlashLight = false;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        binding = ActivityScanQrBinding.inflate(getLayoutInflater());
        setContentView(binding.getRoot());

        mContext = this;
        mActivity = this;

        capture = new CaptureManager(this, binding.zxingBarcodeScanner);
        capture.initializeFromIntent(getIntent(), savedInstanceState);
        capture.setShowMissingCameraPermissionDialog(true);
        capture.decode();

        changeLaserVisibility(true);
    }

    public void changeLaserVisibility(boolean visible) {
        binding.zxingViewfinderView.setLaserVisibility(visible);
    }
}
  

Ответ №1:

Чтобы использовать привязку данных, вам нужно поместить свой макет внутри тега.

Ваш activity.xml

 <layout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@ id/ll_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true"
        android:layout_below="@ id/ll_header"
        android:background="@color/color_white"
        android:gravity="center"
        android:orientation="vertical">

        <com.journeyapps.barcodescanner.DecoratedBarcodeView
            android:id="@ id/zxing_barcode_scanner"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:zxing_scanner_layout="@layout/view_custom_qr_scanner"/>

    </LinearLayout>

</layout> 
  

Ваш view_custom_qr_scanner.xml файл должен быть

 <layout>
           <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">
            
            <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="250dp"
                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_laser_visibility="true"
                app:zxing_viewfinder_mask="@color/zxing_custom_viewfinder_mask" />
            
            <TextView
                android:id="@ id/zxing_status_view"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="bottom|center_horizontal"
                android:background="@color/zxing_transparent"
                android:text="Place a QR code inside the scan area."
                android:textColor="@color/zxing_status_text" />
            
            </merge>
    </layout>
  

Комментарии:

1. Я пытался, но это все то же самое. правильна ли моя привязка? binding.zxingViewfinderView.setLaserVisibility(visible);

2. позвольте мне проверить со своей стороны. Вы перестроили проект после изменения?

3. Не могли бы вы, пожалуйста, проверить еще раз после очистки и перестройки вашего проекта? Это должно сработать

4. Все то же самое. невозможно привязать.

5. также добавьте тег layout для activity xml

Ответ №2:

В вашей деятельности создайте новую переменную типа ‘binding’, которая была бы

привязка частного ViewCustomQrScannerBinding к bindingCustomScanner

теперь в вашем «onCreate» под "binding = ActivityScanQrBinding.inflate (getLayoutInflater ());" добавьте эту строку

Привязка пользовательского сканера = ViewCustomQrScannerBinding.bind (привязка.root)

теперь, когда вы вызываете свойства нового представления, вы вызываете новый ‘bindingCustomScanner’

Комментарии:

1. не могли бы вы, пожалуйста, уточнить свой ответ… может быть, фрагмент кода очень поможет