gpt4 book ai didi

java - Jetpack 数据绑定(bind)在同一文件中生成了与同一类相同的重复类

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:10:59 24 4
gpt4 key购买 nike

今天早上我收到一个错误,我的应用无法安装,我已将其归结为这个问题。我在同一个文件中有两个相同的类。我不想包含整个生成的文件,因为它很长。

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。令人恼火的是,这在昨天有效,从那以后我就没有更改绑定(bind)。

关于可能是什么问题有什么建议吗?

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

我有三个带有数据绑定(bind)的布局文件,所有三个都有相同的错误。

最佳答案

删除编译器依赖,从3.2.0开始自带绑定(bind)插件。至少它对我有用。

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

关于java - Jetpack 数据绑定(bind)在同一文件中生成了与同一类相同的重复类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51522637/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com