ParallaxHeaderViewPager icon indicating copy to clipboard operation
ParallaxHeaderViewPager copied to clipboard

how to add onclicklistener in recycle view?

Open jahir07 opened this issue 9 years ago • 1 comments

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.

jahir07 avatar Sep 24 '15 04:09 jahir07

try it add interface

kingslou avatar Nov 07 '16 07:11 kingslou