trinhlbk1991/DemoCardViewRecyclerView

clickable

Opened this issue · 1 comments

How can I make it clickable??

Hi,

If you want to make any View clickable, just set the on click listener for it. Example:

button.setOnClickListener(new OnClickListener() {
     @Override
     public void onClick(View view) {
          Toast.makeText(MainActivity.this, “Button Clicked”, Toast.LENGTH_SHORT).show();
     }
});