Hide Soft Keyboard on Done Keypress in Android?

前端 未结 6 1481
盖世英雄少女心
盖世英雄少女心 2021-02-01 16:26

I\'m struggling with the done button on the soft keyboard. I can\'t get the soft keyboard Done key press to hide the keyboard. From another button, it works perfectly with

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-02-01 17:04

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

    with context being your activity.

提交回复
热议问题