Search code examples
androidandroid-keypad

How to disable the dialpad soft keyboard in android?


I am working on the Phone app in tablet mode.I want to disable the soft keypad wen we click on the edit text.Can any one please help me.. Thanks in advance.


Solution

  • Use this for hide

    InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
    imm.hideSoftInputFromWindow(edit.getWindowToken(), 0);
    

    Use this for show

        InputMethodManager imm = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE); 
    imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);