-3
recylerView.setOnClickListener(new View.OnClickListener() {
           @Override
           public void onClick(View v) {
               someMethod();
           }
        });

I want to disable click on recylerview items.Here the method someMethod(); is not called.

Sivajee Battina
  • 4,124
  • 2
  • 22
  • 45
Ramesh
  • 70
  • 3

1 Answers1

1

Add the attribute in your recyclerView in XML file

android:clickable="false"