Hi,

List view should work fine as long as you populate it dynamically,
don't just shove everything it it at once. That will speed it up.
There's lots of articles on the web about making a fast ListView.

I dont know though, which method would be faster.

LinearLayout really wouldnt work for large amounts of items because
you would run out of views, so you would have to recycle them, which
is what ListView does already anyway..

-niko

On Nov 11, 5:24 am, James Wang <jameswangc...@gmail.com> wrote:
> Gallery in Android is only horizontal scrolling support. And we want
> make one with vertical scrolling support.
>
> We got plans below. Can anyone give us some advice about which one is
> right?
> 1) Linearlayout ( We think it's bad)
> 2) ListView ( We think it's a good option and get a little worry about
> performance--too many pictures!)
> 3) subclass of AbsSpinner like Gallery and do something like Gallery
> source.
>
> Which one is easy, time-saving and less performance or other problems.
>
> Best Regards,
>
> James

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to