How to disable RecyclerView Items from clicking

后端 未结 9 897
迷失自我
迷失自我 2020-12-31 04:00

I am using Floating Action Button. I want to disable Recyclerview Items from Clicking when i press FAB button. I tried this method but not working setClickable(true);<

9条回答
  •  灰色年华
    2020-12-31 04:27

    You can disable the touch of recyclerview

    recyclerView.setOnTouchListener(new View.OnTouchListener() {
                    @Override
                    public boolean onTouch(View v, MotionEvent event) {
                        return true;
                    }
                });
    

提交回复
热议问题