I saw the same error. In my case, I told the activity to manage a cursor (Activity.startManagingCursor(cursor) and later on replaced the cursor with a new one due to changes in my filter settings without stopping the management of the previous cursor (i.e. without calling Activity.stopManagingCursor(cursor)). performRestart() then tried to requery the old and already closed cursor.
Maybe, you forgot stopManagingCursor() too? -- 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

