Android: Disable soft keyboard at all EditTexts

前端 未结 13 2181
失恋的感觉
失恋的感觉 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:39

    I have been looking for solutions to this all day, and I came across this approach. I'm putting it here because it seems to answer this question perfectly.

    EditText et = ... // your EditText
    et.setKeyListener(null) //makes the EditText non-editable so, it acts like a TextView.
    

    No need to subclass. The main difference between this and making your EditText non-focusable, is that the EditText still has its own cursor - you can select text, etc. All it does is suppress the IME from popping up its own soft keyboard.

    0 讨论(0)
  • 2020-11-27 06:39

    Its been some time since this post, but here is a simple method which worked for me: in the xml, in the EditText properties, do: android:focusable="false". Now the keyboard will not popup even if the user clicks on it. This is useful if you are providing your own keypad.

    0 讨论(0)
  • 2020-11-27 06:39

    Call TextView.setShowSoftInputOnFocus(false). This method is documented since API level 21, but it's already there since API level 16 (it's just hidden from JavaDoc). I use it with API level 16 in an AlertDialog in combination with dialog.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN).

    In API level 14, there is a hidden method setSoftInputShownOnFocus() which seems to have the same purpose, but I have not tested that.

    The advantage over InputType.TYPE_NULL is, that all the normal input types can be used (e.g. for password input) and the touch event positions the cursor at the correct spot within the text.

    0 讨论(0)
  • 2020-11-27 06:44

    Know its too late, but have you tried the following setting to EditText in your layout ?

    android:inputType="none"
    

    UPDATE

    Use,

    editText.setInputType(InputType.TYPE_NULL)
    editText.setFocusable(false)
    
    0 讨论(0)
  • 2020-11-27 06:49

    If you put the textViews in the view group you can make make the view get the focus before any of its descendants by using this:

    view.setDescendantFocusability(view.FOCUS_BLOCK_DESCENDANTS);
    
    0 讨论(0)
  • 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); 
    
    0 讨论(0)
提交回复
热议问题