我希望我的RecyclerView项目向左滑动,并且必须显示星号复选框以添加到收藏夹列表。我正在使用Mike Penz的FastAdapter。我该怎么办?
答案 0 :(得分:1)
以下问题与适配器实现无关。 Adapter
本身的主要目的是提供项目。例如,在FastAdapter
中,适配器完全独立于任何UI。并且只会处理抽象元素。
View
的工作是定义项目的外观和行为。因此,这完全取决于开发人员,并且具有所有灵活性。
出于展示目的,在FastAdapter
的示例应用程序中实现了这种情况。
您需要将ItemTouchHelper.SimpleCallback
附加到RecyclerView
上,以处理用户的滑动操作。
使用提供的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