Skip to content Skip to sidebar Skip to footer

Android: Couldn't Init Cursor Window

I'm getting the following error and stack traces: Caused by: java.lang.IllegalStateException: Couldn't init cursor window at android.database.CursorWindow.native_init(Native Method

Solution 1:

i think you should :

if (!cursor.isClosed() ||cursor != null)
             {
                     cursor.close();
                     cursor=null;
             }

and all you open cursor should close,and put close at the last

Post a Comment for "Android: Couldn't Init Cursor Window"