ItemTouchHelper.callback中的ConvertToAbsoluteDirection()

时间:2019-07-08 13:54:32

标签: android android-recyclerview android-cardview itemtouchhelper

我正在尝试创建具有“添加到收藏夹”的滑动功能的“回收站”视图。

我已经阅读了有关ItemTouchHelper类以及如何防止卡完全滑落的信息。我不明白下面的功能

public int convertToAbsoluteDirection(int flags, int layoutDirection)
{
            if (swipeBack)
            {
                  swipeBack = false;
                  return 0;
            }
            return super.convertToAbsoluteDirection(flags,layoutDirection);
}

有人可以解释返回值和super.convertToAbsoluteDirection调用的意义吗?

0 个答案:

没有答案