Integrate IPhone Safari like view in Android?
The main concept goes like this. I have four listviews with its own data loaded at the same time. Only one listview will be visible to the user. Now, when the user presses a button, not only the current listview but also other three listviews should be minimized and then user can just scroll just as in Gallery and select the listview that one wants to open.
I ho开发者_如何学Cpe you all have understood what I want.
Let me know if someone have some idea of implementing such a User Interface in Android.
You can use either View.draw() or View.getDrawingCache() depending on what suits you best. Then just display them using Gallery
or something similar.
精彩评论