I am creating a Playbook app in Adobe Flex/AIR.
I have a situation where there is too much content to show all on one page so I would like it where the content overflows vertically, the user can swipe开发者_JAVA百科 to scroll down, like they were viewing a website on an Ipad.
I am extending the View class to make my screens, I could place every screen in a one element List or surround it all in a Scroller but surely there must be an inbuilt way to do this on the Playbook?
With the limited Blackberry documentation, I'm struggling to find the solution, any ideas?
Thanks
I'm developing my own Blackberry Playbook app myself. Here's some advice:
- Take a look at the List View options available. You might be interested in using a TileList
- Review listening for Swipe Events to update the position of your List (be it TileList or SectionList).
- Check out the Blackberry Tablet documentation. It's not that limited!
精彩评论