如何根据位置禁用SwipeMenuLIstView滑动?

时间:2017-10-25 08:45:37

标签: android listview swiperefreshlayout

我正在使用Github的滑动菜单列表视图 https://github.com/baoyongzhang/SwipeMenuListView

根据我的项目要求,我需要根据位置停止列表View to Swipe。 例如,我想停止列表项以在位置2上滑动 我该怎么做?

mListView.setOnSwipeListener(new SwipeMenuListView.OnSwipeListener() {
        @Override
        public void onSwipeStart(int position) {
            if (positon == 2) {
                Toast.makeText(getApplicationContext(), "you are not Allow to Swipe", Toast.LENGTH_SHORT).show();

            }
        }

        @Override
        public void onSwipeEnd(int position) {

        }
    });

0 个答案:

没有答案