Re: [android-developers] Re: Jerky Scrolling when using SimpleCursorAdapter with ListView

2010-07-26 Thread Quinn Rohlf
Nope, there are fewer than 20 items in the db. On Mon, Jul 26, 2010 at 3:42 PM, Mark Murphy wrote: > On Mon, Jul 26, 2010 at 12:44 PM, Quinn Rohlf wrote: > > Is there any way that this could be a problem in the database rather than > > the listview? My query looks like thi

Re: [android-developers] Re: Jerky Scrolling when using SimpleCursorAdapter with ListView

2010-07-26 Thread Quinn Rohlf
Is there any way that this could be a problem in the database rather than the listview? My query looks like this: Cursor c = mDB.query(DB_TABLENAME, new String[]{"_id", "ICONID", "DATE", "TITLE", "URL"}, null, null, null, null,"DATE DESC&q

Re: [android-developers] Re: Jerky Scrolling when using SimpleCursorAdapter with ListView

2010-07-23 Thread Quinn Rohlf
The icons aren't the issue - I've tried turning them off and it has no effect. I've encountered a similar scrolling issue with a custom ListAdapter extending BaseAdapter I wrote a while ago, and it was caused by not properly setting the view's values in getView() I resolved it using the fix posted

[android-developers] Re: android.view.InflateException ONLY in android 1.5

2010-07-15 Thread Quinn Rohlf
I figured it out - I hadn't realized that the 1.5 platform doesn't support localized resources. Duplicated all of the referenced resources in /drawable-mdpi into /drawable and it worked like a charm. On Thu, Jul 15, 2010 at 3:28 PM, QR wrote: > Hello, > I am having trouble with with getting