I have a Live Android application, and from market i have received following stack trace and i have no idea why its happening as its not happening in application code but it
In my case, with the same error exception, i put the "onBackPressed()" in a runnable (you can use any of your view):
myView.post(new Runnable() { @Override public void run() { onBackPressed() } });
I do not understand why, but it works!