I need to show the users profile picture who all are joining in a specified event and it should be in horizontal circular images one after other and after 5 images. it shoul
Here is a layout design of your requirment. Take reference of these images. like
TextView = itemView.findViewById(R.id.nmr_of_students);
CircularImageViewstudent1 = itemView.findViewById(R.id.student1);
CircularImageViewstudent2 = itemView.findViewById(R.id.student2);
CircularImageViewstudent3 = itemView.findViewById(R.id.student3);
CircularImageViewstudent4 = itemView.findViewById(R.id.student4);
CircularImageViewstudent5 = itemView.findViewById(R.id.student5);
now use below layout and assign value to them. and you are good to go.