Posts

Showing posts with the label RecyclerView with CheckBox

RecyclerView with CheckBox Example

Image
 Example to show Selected items with checkbox in the RecyclerView. Step: 1 ====== Create a Model class with name, emailId, isSelected variables Student.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 package com . pratap . cardviews1 ; import java.io.Serializable ; public class Student implements Serializable { /** * */ private static final long serialVersionUID = 1L ; private String name ; private String emailId ; private boolean isSelected ; public Student () { } public Student ( String name , String emailId ) { this . name = name ; this . emailId = emailId ; } public Student ( String name , String emailId , boolean isSelected ) { this . name = name ; this . emailId = emailId ; this . isSelected = isSelected ; } public String getName () { return name ; } public void setName ( S...