[android-developers] Scroll View for Android

2012-07-25 Thread Dan Uff
Hi all, I am new to Android so please forgive me if this questions sounds basic. I need to create a list of buttons that are contained in a scroll view. Can anyone give me an example or point me in the right direction to learn about doing this? Thanks, Dan Uff -- You received this message be

Re: [android-developers] Scroll View for Android

2012-07-25 Thread abhijeet tomar
Suppose your mobile screen height is very less and you have to show many items than what will you do? that time you have to use scroll view.in scroll view you have to add a single layout and you can scroll this view. -- You received this message because you are subscribed to the Google Groups "An

Re: [android-developers] Scroll View for Android

2012-07-25 Thread Dan Uff
Thanks for your comment. As I said, I am new to this platform (I also write for iOS) and am looking for answers for a customer who wants a layout such as the one I said, or would you (or anyone else) have another suggestion? I have to have at least 32 choices on the screen. Thanks, Dan Uff O

Re: [android-developers] Scroll View for Android

2012-07-25 Thread Larry Meadors
Add a scroll view to your layout. Add a layout to that. Add buttons to the layout. On Wed, Jul 25, 2012 at 7:17 AM, Dan Uff wrote: > Thanks for your comment. > > As I said, I am new to this platform (I also write for iOS) and am looking > for answers for a customer who wants a layout such as the

Re: [android-developers] Scroll View for Android

2012-07-25 Thread Justin Anderson
What about a GridView? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Wed, Jul 25, 2012 at 7:46 AM, Larry Meadors wrote: > Add a scroll view to your layout. Add a layout to that. Add buttons to > the layout. > > On Wed, Jul 25, 2012 at 7:17 AM, Dan Uff