How can i set up my RecyclerView
properly to detect swipe Up and Down?
When i place recycler.setOnTouchListener(this)
I get this warning: recyclerview has setontouchlistener but does not override perfoclick and nothing works.
Thank you.
recyclerView = (RecyclerView)rootview.findViewById(R.id.recyclerView);
recyclerView.setLayoutManager(layoutManager);
Adapter adapter=new
Adapter (List);
recyclerView.setAdapter(adapter);