> @Mark: > You do not need to call setAdapter() again on the ListView. > ArrayAdapter > will already remove the row from the ListView without setAdapter() > being > called again. > > If I dont set it, the images from the row changed arbitrarily.
Then your adapter is messed up. > Must I create an own class, where i save my three values (image, > description, anotherstring) > and make a ArrayList<MYOWNCLASS> object?? That is probably a good idea. > I cannot believe, that it is so difficult to delete one row... Your problem isn't in deleting the row, I suspect. Try adding 20-30 rows, and then try scrolling. I am willing to bet that you will find that your images are messed up then too. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- 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

