i want to implement on onclicklistener on cardview and every card takes me to a different activity
问题 I want to replace the toast and I want every card view when clicked takes the user to a new different activity. I would also like to implement Interstitial ads when the user clicks on the cardview. Here is my adapter class public class MyAdapter extends RecyclerView.Adapter< LessonViewHolder > { private Context mContext; private List< LessonData > mLessonList; MyAdapter(Context mContext, List< LessonData > mLessonList) { this.mContext = mContext; this.mLessonList = mLessonList; } @Override