Cursor: Invalid statement in "fillWindow ();"

I get this error:

Cursor: invalid operator in fillWindow ()

What does it mean? Any suggestions on how to overcome it?

+5
source share
2 answers

Now I have solved this problem. The cursor DB n was not closed properly. when I pressed the back button, it became broken. so i used this code

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
    if(requestCode == ACTIVITY_EDIT )
    {
        finish();
    }
}      

we can close all databases with this activity.

Thanks everyone for the suggestions. enjoy the care :)

+2
source

Do you see this link?

I think this link should have a solution for your problem

+3
source

All Articles