简体   繁体   中英

How to hide the soft keyboard on EditText

I want to hide soft keyboard on EditText even on 'click' also. I mean to say there should not be visible soft keyboard in my activity, because I am having own keyboard to enter data. Please help me... Thanks...

 editText_input_field.setOnTouchListener(otl);

 private OnTouchListener otl = new OnTouchListener() {
 public boolean onTouch (View v, MotionEvent event) {
        return true; // the listener has consumed the event
}
};

source : how to block virtual keyboard while clicking on edittext in android?

像这样将EditText小部件的inputType设置为null

editTExt.setInputType(TYPE_NULL);

将以下代码粘贴到xml文件中的edittext标签下

android:textIsSelectable="true"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM