Re: [android-developers] List View and Simple Cursor Adapter

2011-07-16 Thread Mark Murphy
getView() will be called many times, not necessarily only the number of times you might expect or in the order you expect. Please just make your getView() implementation be efficient and let Android call getView() as it sees fit. On Sat, Jul 16, 2011 at 3:56 AM, juliagrig wrote: > Hi all, > > I h

[android-developers] List View and Simple Cursor Adapter

2011-07-16 Thread juliagrig
Hi all, I have a listview in my app and a SimpleCursor Adapter in a different class. In getView method I tried to set properties fom the text view of each list item. It works fine, but I have a log.i(",") message in the end of the getView() method and I see that this method run 3 times. So , I s

[android-developers] List View and Simple Cursor Adapter

2011-07-16 Thread juliagrig
Hi all, I have a listview in my app and a SimpleCursor Adapter in a different class. In getView method I tried to set properties fom the text view of each list item. It works fine, but I have a log.i(",") message in the end of the getView() method and I see that this method run 3 times. So , I s