Android: Disable soft keyboard at all EditTexts

前端 未结 13 2313
失恋的感觉
失恋的感觉 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 07:01

    You can do that:

    textView.setOnClickListener(null);
    

    It will disable the keyboard to the textView and the click will not work anymore.

提交回复
热议问题