I am trying to call activity by clicking card view. The app is crashing when I click cardview:
Here is the code:
cardView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
context.startActivity(new Intent(context,Dummy.class));
}
});
But if I put a toast message instead - it is working fine. What is wrong here?