1

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?

Community
  • 1
  • 1
Padma
  • 656
  • 3
  • 11
  • 30

1 Answers1

5

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?.

Community
  • 1
  • 1
user770428
  • 997
  • 8
  • 5