On Sun, Jul 11, 2010 at 5:00 AM, RodgerWilko! <[email protected]> wrote: > Is it possible to have a list activity that dosen't finish? i.e. if > you scroll to the end of the list then the start of the list begins > again?
There is nothing built in to handle this. There are hacky ways of getting a similar effect with a custom ListAdapter (e.g., getCount() returns some crazy-big number, and you interpret all positions as being modulo the actual list length). Also, unless you use some fairly creative UI, the user will think they should be able to get to the end of the list. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training...At Your Office: http://commonsware.com/training -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

