applesquash wrote: > Latest update if anyone is actually reading these... > My selection trick is working but it's still wonky and selecting > things at random. > I believe this is due to the way the inflater works, only inflating > one page at a time.
What is a "page" in this context? > I guess the list position repeats itself for each cached page. > But I'm not too sure. > Does anyone know of a setting that can make the position accurate for > the whole list and not just the visible page? The position parameter passed to getView()/newView()/bindView() is accurate for the whole list when used properly. Since there is no concept of "page" with lists in Android, I am not sure what you mean by "not just the visible page". >> I'm trying to create a multiple selection list where the selection is >> represented graphically rather than with checkboxes. Why? >> My list has >> checkboxes, but I want them to serve a different purpose. As a user, I find your lack of consistency disturbing. Overall, I would not even know where to begin advising you on how to implement your intended design. I recommend that you simplify your user interface and stick to platform conventions that your users will expect, such as a CheckedTextView and CHOICE_MODE_MULTIPLE being used for multiple-selection lists. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 2.0 Available! -- 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

