views:

61

answers:

1

I am writing my first Android app.
The app is displays bus stop information i want to have a panel for each stop that the user can scroll sideways through, like a weather app with a panel for each city.
Looking at the Dev Guide I don't see how to do this.
What Layout Object/ViewGroup should I be using? or should i looking somewhere else?

A: 

Sounds like you want a HorizontalScrollView. There's an example of its usage here.

Chris Smith
Thanks for that is there any best practice method of using that to create window sized panels? I'm still not sure how to make the panels but I can see how HorizontalScrollView could be used to scroll some kind of view
Scott G