HorizontalScrollView custom adapter?
I'm trying to make a Gallery widget using HorizontalScrollView , So inside the HorizontalScrollView I add ImageView s, and the problem is that I'm going to add 600+ images! Can I make some kind of a custom adapter in order to override the GetView method and utilize convertView in order to make the app smoother and avoid adding 600+ views at the same time? HorizontalScrollView can contain only one View , so you have to draw that whole View anytime you are drawing any part of it. This could, however, be worked around by extending ViewGroup as child of your HorizontalScrollView using your custom