If I physically slide out the keyboard on my Moto Droid A855, it crashes my test app with the stack trace pasted below. I don\'t understand why?
Also, if I start my
It's really difficult to help you if you don't provide some part of your code... anyway, this error is not new and there are some workarounds in order to solve it (I guess is some bug)... try to do this:
@Override
protected void onDetachedFromWindow() {
try {
super.onDetachedFromWindow();
}
catch (IllegalArgumentException e) {
stopFlipping();
}
}
This is for overriding the onDetachedFromWindow
and I hope it works for you.