How to programmatically hide/disable emoticons on Android soft keyboard

后端 未结 6 693
暗喜
暗喜 2020-12-03 01:25

Is it possible to hide a specific keyboard button? I have an EditText and on some devices its keyboard has smiley faces while on other devices it is missing. I

6条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-03 01:49

    
    mEditText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD| TEXT_MULTILINE); 
    

提交回复
热议问题