我正在尝试使用dataBinding设置recyclerview,并且我面对的是未生成CategoriesLayoutoutBindingImpl的问题,我几乎尝试了所有方法,但是我不知道问题到底在哪里发生
这是我的图像获取功能
@BindingAdapter("bind:mealsImg")
fun getmealsUrl(imageView: ImageView, mealsModel: MealsModel)
{
Picasso.with(imageView.context).load(mealsModel.strMealThumb).fit().into(imageView)
}
这是我的布局
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<import type="android.view.View" />
<variable
name="secondimg"
type="taki.eddine.foodapp.ModelUi.MealsModel" />
<variable
name="mealslistener"
type="taki.eddine.foodapp.ToolsUi.MealsAdapter.MealsListener" />
<variable
name="meal"
type="taki.eddine.foodapp.ModelUi.MealsModel" />
</data>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:onClick="@{(v) -> mealslistener.mealsClicked(meal)}"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:layout_width="170dp"
android:layout_height="150dp"
app:mealsImg="@{secondimg.strMealThumb}"
android:background="@color/colorPrimary"
/>
<androidx.cardview.widget.CardView
android:layout_width="170dp"
android:layout_height="45dp">
<TextView
android:id="@+id/mealssname"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:gravity="center"
android:text="@{meal.strMeal}"
android:textStyle="bold" />
</androidx.cardview.widget.CardView>
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
这是生成的错误
error: cannot find symbol
import taki.eddine.foodapp.databinding.CategorieslayoutBindingImpl;
^
symbol: class CategorieslayoutBindingImpl
这是显示错误发生位置的照片
任何帮助,如果我必须展示其他内容,请告诉我