Jetpack数据绑定在与相同类相同的文件中生成重复类

时间:2018-07-25 15:26:11

标签: java android android-databinding android-jetpack

今天早上,我遇到一个错误,无法安装我的应用程序,并且已将其追溯到此问题。我在同一文件中有两个相同的类。我不想包含整个生成的文件,因为它很长。

public class AddVinDialogFragmentBinding extends androidx.databinding.ViewDataBinding implements android.databinding.generated.callback.OnClickListener.Listener {
    @Nullable
    private static final androidx.databinding.ViewDataBinding.IncludedLayouts sIncludes;
    @Nullable
    private static final android.util.SparseIntArray sViewsWithIds;
 :
    @Nullable
    private com.ui.EventHandler mHandler;
    @Nullable
    private final android.view.View.OnClickListener mCallback1;
    public class AddVinDialogFragmentBinding extends androidx.databinding.ViewDataBinding implements android.databinding.generated.callback.OnClickListener.Listener {

        @Nullable
        private static final androidx.databinding.ViewDataBinding.IncludedLayouts sIncludes;
:
}

gradle.properties中,我有这个:android.databinding.enableV2=true

我的布局非常简单:

<layout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
    <data>
        <variable
            name="vin"
            type="String" />
        <variable name="handler" type="com.ui.garage.handlers.EventHandler" />
    </data>
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.ui.AddVinDialogFragment">
    <TextView
        android:layout_width="wrap_content"
        android:text="Please enter a VIN"
        android:layout_height="wrap_content" />
    <com.google.android.material.textfield.TextInputLayout
        android:id="@+id/add_vin_field"
        android:layout_width="200dp"
        android:maxLength="17"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="10dp">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:hint="@string/vin"
        android:text="@={vin}" />
    </com.google.android.material.textfield.TextInputLayout>

    <Button
        android:id="@+id/button"
        android:onClick="@{() -> handler.addVin(vin)}"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/submit" />
</LinearLayout>
</layout>

我正在使用Android Studio 3.3 Canary 3

有时,我发现布局文件中有一个重复的类,然后找不到DataBindingComponent。令人讨厌的是,这种方法昨天有效,从那以后我就没有更改绑定了。

关于可能是什么问题的任何建议?

我删除了.gradle和mobile / build / *,并进行了多次清理和重建,以及退出并重新启动Android Studio。

我有三个具有数据绑定的布局文件,并且所有三个都有相同的错误。

1 个答案:

答案 0 :(得分:2)

删除编译器依赖项,它与3.2.0中的绑定插件一起提供。至少对我有用。

kapt "com.android.databinding:compiler:$gradleVersion