How to use few drawable images in unlimited length of listview?
Clash Royale CLAN TAG #URR8PPP How to use few drawable images in unlimited length of listview? I have 3 images in drawable and as it is difficult to store huge image files in drawable for limitless length of listview, I want to use these three images for the entire listview repeatedly or randomly. For more to be clear.. 1st image for ----------> 1st data 2nd image for ----------> 2nd data 3rd image for ----------> 3rd data 1st image for ----------> 4th data 2nd image for ----------> 5th data 3rd image for ----------> 6th data ................................................... ................................................... 1st image for ----------> 100th data ................................................... ................................................... and so on or randomly if possible. I think I have to use loop and necessary condition to solve this problem. But do not know how to go through. Can anyone help me to solve this with necessary code imple...