android 使用EpoxyModelWithHolder查看绑定

lx0bsm1f  于 2023-01-19  发布在  Android
关注(0)|答案(1)|浏览(160)

我在一个Epoxy模型类中使用EpoxyModelWithHolder和多个布局。我如何进行ViewBinding?目前,我使用Kotlin-android-extensions。下面是我的代码

@EpoxyModelClass
abstract class ItemSampleEpoxyModel : EpoxyModelWithHolder() {

@EpoxyAttribute
var itemSampleShelf: ComponentFactoryLanderPagesHeroShelf.ComponentLanderPageHeroShelf.ItemLanderPageHeroShelf? =
    null

override fun getDefaultLayout() =
    when {
        itemSampleShelf?.heroStyle == "Project" -> {
            R.layout.item_project_sample
        }
        itemSampleShelf?.shelfItemType == "Course" -> {
            R.layout.item_course_sample
        }
        else -> {
            R.layout.item_sample
        }
    }

override fun bind(itemHolder: ItemSampleEpoxyHolder) {
    itemHolder.titleView.text = itemSampleShelf?.title
} }


class ItemSampleEpoxyHolder : EpoxyHolder() {

lateinit var titleView: AppCompatTextView

override fun bindView(itemView: View) {
    titleView = itemView.tv_title
}}
t9aqgxwy

t9aqgxwy1#

首先添加环氧树脂的依赖性:

def epoxyVersion = '4.6.3'
implementation "com.airbnb.android:epoxy:$epoxyVersion"
implementation "com.airbnb.android:epoxy-databinding:$epoxyVersion"
kapt "com.airbnb.android:epoxy-processor:$epoxyVersion"

之后,我们需要配置epoxy。为了做到这一点,我们需要package-info.java在app模块中创建一个www.example.com文件,并编写以下代码。

@EpoxyDataBindingPattern(rClass = R.class, layoutPrefix = "epoxy_item")
interface Config {
}

然后我们需要记住一件事,无论何时创建布局,它都应该是data binding layout,并且其名称应该遵循package-infolayoutPrefix变量中定义的值。例如,在我的示例中,layoutPrefix是epoxy_item,因此无论何时命名布局,它都以epoxy_item开头。
样品布局:(布局名称-〉环氧树脂_项目_装载)

<?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">

<data>

    <variable
        name="isVisible"
        type="Boolean" />

</data>

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:isVisible="@{isVisible}">

    <ProgressBar
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:theme="@style/ProgressBlueTheme"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
 </layout>

现在将此布局添加到环氧树脂回收机视图:

epoxyRecycler.withModels {
               loading {
                id("progress layout")
                isVisible(isLoading)// boolean variable
            }
        }

这就是我们需要做的:)

注意:有时布局的自动生成类不是在android studio中生成的,因此在这种情况下android studio会将模型显示为无法识别并在其下方显示红线。在这种情况下,您需要重建项目。 有时,清理并重建项目 。}

相关问题