I am trying to do a layout similar to the one used in iphone for the weather app:
http://www.spirituality.org.za/uploaded_images/MTN-South-Africa-iPhone-Weather-app-719447.jpg
This layout scrolls left/right very smoothly, and only loads the weather as you scroll.
HorizontalScrollView cant be used because it loads everything in memory, so not a good idea.
Gallery will be similar to the iphone, but it has many problems when you put ListViews inside it, so also not good.
Is there any other layout like that? or do I have to build my custom layout?
In case it must be custom, do you know any site/app/code where they have done something similar?
Thanks
The best way I found is to use a HorizontalScrollView, and overwrite the touch events so I can scroll one screen at a time, and draw as needed and not have all the views at the same time in the screen.