Possible Duplicate:
Android: how can i tell if the soft keyboard is showing or not?
how to detect whether the soft keyboard is shown in the screen or not in android?
Possible Duplicate:
Android: how can i tell if the soft keyboard is showing or not?
how to detect whether the soft keyboard is shown in the screen or not in android?
There is no direct way - see http://groups.google.com/group/android-platform/browse_thread/thread/1728f26f2334c060/5e4910f0d9eb898a where Dianne Hackborn from the Android team has replied. However, you can detect it indirectly by checking if the window size changed in #onMeasure. See How to check visibility of software keyboard in Android?.