> Here is an excerpt from one of my books that discusses the process: > > http://commonsware.com/Android/excerpt.pdf
I tried the examples coming with the SDK in combination with some more advanced stuff I found online but didn't work. I now had a look at Mark's PDF and modified some things and found my main/biggest problem: This is how I retrieved the TextView element of each row: TextView topText = (TextView) findViewById(R.id.episodeRowTitle); And this is what it should be (watch the 'row.'): TextView topText = (TextView) row.findViewById(R.id.episodeRowTitle); So I guess beceause I forgot the 'row.' I go my first created row and had it overwritten all the time. Is that correct? > ViewHolders that give you better performance but are harder to grasp. Christine, I will certainly give this a test now I got my ListView working! Thx a lot all!! -- 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

