On Tue, Sep 14, 2010 at 11:14 AM, Sara Khalatbari <[email protected]> wrote: > But I can not see how I can create an ArrayAdapter that does not need a > textViewResourceId?
Subclass ArrayAdapter, override getView(), and you can ignore that parameter, as it will not get used. It only gets used by the stock implementation of getView(). -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy -- 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

