Android: Disable soft keyboard at all EditTexts

前端 未结 13 2322
失恋的感觉
失恋的感觉 2020-11-27 06:23

I am working on a dialog at Android with a few EditTexts. I\'ve put this line at the onCreate() in order to disable the soft keyboard:



        
13条回答
  •  清酒与你
    2020-11-27 06:51

    in order to disable ANDROID SOFT INPUT KEYBOARD xml file doesn't help in my case calling the setInputType method on EditText object in java file works great. here is the code.

    EditTextInputObj = (EditText) findViewById(R.id.EditTextInput);
    EditTextInputObj.setInputType(InputType.TYPE_NULL); 
    

提交回复
热议问题