禁止Edittext弹出系统软键盘 的几种方法

第一种方法:EditText的父布局中添加
android:focusable="true"   
android:focusableInTouchMode="true"

第二种方法:直接关闭输入法
在onCreate中加上:
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

第三种方法:在manifest文件中在该Activity文件上加上属性。
android:configChanges="orientation|keyboardHidden"

 

你可能感兴趣的:(Android)