tags:

views:

54

answers:

1

i am implementing one application some fields are edittext in edittext clicking open mobile keyboard how can implemented this keyboard do not open

A: 

You can use the InputMethodManager to show or hide the keyboard. In order to hide it, you should do something like:

InputMethodManager mgr = (InputMethodManager)
getSystemService(Context.INPUT_METHOD_SERVICE);
mgr.hideSoftInputFromWindow(editText.getWindowToken(), 0);
Adrian Faciu
thank you very much
its working fine