Horizontally of circular images to show user profile picture

后端 未结 3 914
小鲜肉
小鲜肉 2021-01-19 14:59

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

3条回答
  •  耶瑟儿~
    2021-01-19 15:18

    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.

                
                    
                        
                        
                        
                        
                        
    
                    
                    
                    
                
            
    

提交回复
热议问题