如何在 EpoxyModelWithHolder 中获取项目位置?
How to get Item Position in EpoxyModelWithHolder?
我正在尝试使用 Epoxy Library 将 RecyclerView 添加到我的应用程序
我需要在 EpoxyModelWithHolder
中的 bind
方法中获取项目的位置,但我不知道该怎么做。
我找不到任何函数来获取 holder/item 的位置。
解决方案是在您的模型中使用 Integer EpoxyAttribute,并在您的控制器中将其设置为来自 buildItemModel 方法的 id。
在您的模型中:
@EpoxyAttribute
Integer position;
在控制器中:
public EpoxyModel<?> buildItemModel(int i, yourmodel) {
return model()_.id(i).position(i);
}
我正在尝试使用 Epoxy Library 将 RecyclerView 添加到我的应用程序
我需要在 EpoxyModelWithHolder
中的 bind
方法中获取项目的位置,但我不知道该怎么做。
我找不到任何函数来获取 holder/item 的位置。
解决方案是在您的模型中使用 Integer EpoxyAttribute,并在您的控制器中将其设置为来自 buildItemModel 方法的 id。
在您的模型中:
@EpoxyAttribute
Integer position;
在控制器中:
public EpoxyModel<?> buildItemModel(int i, yourmodel) {
return model()_.id(i).position(i);
}