furby wrote: > I am probably being stupid here because I am a beginner in Android > development... But could somebody explain the step by step process of > dynamically populating a listview? I have found a few pages that do it > by reams and reams of code, but that seems kind of silly to me - I > think I must be missing the use of that since I am just looking for a > method that essentially says "Append an element to the list"....
If you are using an ArrayAdapter on an ArrayList, call add() on the ArrayAdapter. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Development Wiki: http://wiki.andmob.org --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

