作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在生成的 BindingImpl 类中遇到了这个错误,但是绑定(bind)类不是最终的,它是抽象的......
BindingImpl 类:
public class FragmentImageBindingImpl extends FragmentImageBinding implements com.example.memoriserlesnombres.generated.callback.OnClickListener.Listener {
...
}
绑定(bind)类:
public abstract class FragmentImageBinding extends ViewDataBinding {
...
}
有任何想法吗 ?
<?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/
我在生成的 BindingImpl 类中遇到了这个错误,但是绑定(bind)类不是最终的,它是抽象的...... BindingImpl 类: public class FragmentImageBi
我有一个显示带有天气信息的城市列表的 fragment 。我正在使用 RecyclerView,我正在尝试在我的 RecyclerView 适配器中实现数据绑定(bind)库,但由于某种原因,我得到了
我正在尝试使用示例项目 android-sunflower 对 View 模型进行数据绑定(bind)。当前的问题是,当我尝试构建项目时出现错误 error: cannot find symbol s
在我的 Fragment s 布局我有一个使用 XML onClick 的按钮表达式调用对应的ViewModel中的方法. 问题是在构建项目时,编译器会抛出以下错误: error: cannot fi
我是一名优秀的程序员,十分优秀!