How to access component of MainActivity in recycler view to make onclick listener?
问题 I created youtube like app with one videoview (on top) and recycler view (down of video view). And i am stuck at, i want to create onclicklistner on recyclerview items and change video path to change video, but how to access videoview component (which in created in mainactivity) in adapter class to set path of videoview? 回答1: Define an Interface for item click event: interface OnAdapterItemClickListener { void onAdapterItemClickListener(int position); } Make Your Activity implement and