gpt4 book ai didi

android - *BindingImpl 类 : cannot inherit from final *Binding

转载 作者:行者123 更新时间:2023-12-03 14:42:03 32 4
gpt4 key购买 nike

我在生成的 BindingImpl 类中遇到了这个错误,但是绑定(bind)类不是最终的,它是抽象的......
BindingImpl 类:

public class FragmentImageBindingImpl extends FragmentImageBinding implements com.example.memoriserlesnombres.generated.callback.OnClickListener.Listener {
...
}
绑定(bind)类:
public abstract class FragmentImageBinding extends ViewDataBinding {
...
}
有任何想法吗 ?
我已经尝试清理/重建项目,使缓存无效/重新启动并重新安装android studio但没有成功。我看到另一个帖子说要删除插件文件,但它们不存在。
我是android新手,但对我来说似乎很麻烦:/
编辑 :
我仍然有错误(在类里面),但我的应用程序运行良好,所以我想我可以忽略它,这只是一个 Android Studio 问题。
这是xml:
<?xml version="1.0" encoding="utf-8"?>
<layout 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">

<data>

<variable
name="view"
type="com.example.memoriserlesnombres.image.ImageViewModel" />
</data>

<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".image.ImageFragment">

<TextView
android:id="@+id/current_number"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@{Integer.toString(view.currentNumber)}"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

<com.google.android.material.textfield.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/current_number">

<com.google.android.material.textfield.TextInputEditText
android:id="@+id/associated_image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint"
android:text="@={view.image}" />
</com.google.android.material.textfield.TextInputLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
android:contentDescription="@string/save_image"
android:onClick="@{() -> view.saveImage()}"
app:srcCompat="@drawable/ic_done_black_24dp" />

</androidx.coordinatorlayout.widget.CoordinatorLayout>
</layout>

最佳答案

在您的一个布局 xml 文件中,删除 <layout>标记并将其添加回来。
这解决了我项目中的类似问题。

关于android - *BindingImpl 类 : cannot inherit from final *Binding,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63328776/

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