Android key event for back key when soft keyboard is shown?
问题 I am trying to capture the "back" key event when the soft keyboard is shown. I am using SDK ver 8 and can successfully capture the back key event ONLY when the soft keyboard is HIDDEN as follows: @Override public void onBackPressed() { // do something super.onBackPressed(); } The problem is that the system is not calling this method while the soft keyboard is shown. I have tried to log onKeyDown/Up() methods as well as the above method to work out what is happening in this scenario to no