3

I am UI and in that in edittext I type and then click button. The softkeyboard stays popped up. Actually before clicking button I want to hide keyboard. How to do it ?

Regards,

miten.

Miten
  • 356
  • 7
  • 23

2 Answers2

0

KEYCODE_BACK works for the phones I use (not emulators).

elbajo
  • 683
  • 2
  • 8
  • 17
0
InputMethodManager imm = (InputMethodManager)getSystemService(Service.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(findViewById(R.id.value).getWindowToken(), 0);
Miten
  • 356
  • 7
  • 23