I\'d like to hook to an event that fires when android\'s on screen keyboard appears. For example when user taps EditText to bring up the keyboard. Anyone know which event (o
According to following discussion thread in Android Developers Google Group the only way to solve this is to listen to size changed events of the main view. The thread is pretty old though. I wonder if any of the newer APIs have provided better way.
http://groups.google.com/group/android-developers/browse_thread/thread/9d1681a01f05e782
The last post explains a logic behind a working solution.