0

我希望我的 RecyclerView 项目向左滑动,并且必须显示星形复选框以添加到收藏夹列表。我正在使用 Mike Penz 的 FastAdapter。我怎样才能做到这一点?

4

1 回答 1

1

以下问题与适配器实现无关。其本身的主要目的Adapter是提供物品。例如FastAdapter,适配器完全独立于任何 UI。并且只会处理抽象元素。

View定义一个项目的外观和行为是我们的工作。因此,这完全取决于开发人员,并且提供了所有灵活性。

出于展示目的,在FastAdapter.

您需要附加一个ItemTouchHelper.SimpleCallbackRecyclerView处理用户的滑动操作。

使用提供的 util 类,可以这样完成:

touchCallback = new SimpleSwipeDragCallback(
        this,
        this,
        leaveBehindDrawableLeft,
        ItemTouchHelper.LEFT,
        ContextCompat.getColor(this, R.color.md_red_900)
)
.withBackgroundSwipeRight(ContextCompat.getColor(this, R.color.md_blue_900))
.withLeaveBehindSwipeRight(leaveBehindDrawableRight);

touchHelper = new ItemTouchHelper(touchCallback); // Create ItemTouchHelper and pass with parameter the SimpleDragCallback
touchHelper.attachToRecyclerView(recyclerView); // Attach ItemTouchHelper to RecyclerView

您可以在此处找到完整的示例源代码: https ://github.com/mikepenz/FastAdapter/blob/develop/app/src/main/java/com/mikepenz/fastadapter/app/SwipeListActivity.java#L120

于 2018-10-14T09:27:38.737 回答