ParallaxHeaderViewPager
ParallaxHeaderViewPager copied to clipboard
how to add onclicklistener in recycle view?
how to add onclicklistener in recycle view?? I want when click "lecture one" it will display webview.
String[] lecture = new String[] {"Introduction", "Lecture One", "Lecture two", "Lecture three", "Lecture four", "Lecture five"};
private List<String> createItemList() {
List<String> list = new ArrayList<>();
for (int i = 0; i < lecture.length; i++) {
list.add(lecture[i]);
}
return list;
}
Please help to make onclicklistener.
try it add interface