I have a ListActivity that selects a cursor from an SQLite table in order to build the list. The cursor is created inside ListActivity.onCreate and closed inside ListActivity.onDestroy. I also call startManagingCursor right after I generate the cursor, which I thought would take care of the cursor life-cycle. When one of the list elements is selected, a new view is started. At that time I see the following error message in the log: "I/dalvikvm( 852): Ljava/lang/ IllegalStateException;: Finalizing cursor android. database.sqlite.sqlitecur...@43baa7e0 on ShippingEvents that has not been deactivated or closed.
Is this a real error? If so, what is happening and how can I correct it? -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

