[android-developers] Re: show more photos

2010-01-28 Thread sunrises
Thank you Frank Weiss On Jan 29, 8:11 am, Frank Weiss wrote: > It may also help you to look at Romain Guy's PhotoStream demo application. > The source is available at code.android.com. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Re: show more photos

2010-01-28 Thread sunrises
Thank you Nerdrow On Jan 29, 3:55 am, Nerdrow wrote: > - cache the images to disk > - use a List to store the paths to the cached images > - extend a BaseAdapter and use the List as your data source > - add a setPage(int page) method to set which page of 10 images you're > on > - in getView() adj

Re: [android-developers] Re: show more photos

2010-01-28 Thread Frank Weiss
It may also help you to look at Romain Guy's PhotoStream demo application. The source is available at code.android.com. -- 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

[android-developers] Re: show more photos

2010-01-28 Thread Nerdrow
- cache the images to disk - use a List to store the paths to the cached images - extend a BaseAdapter and use the List as your data source - add a setPage(int page) method to set which page of 10 images you're on - in getView() adjust the value of position to account for the page index quick exam