Android editText 默认不弹出软键盘
本文转载自:http://blog.sina.com.cn/xuniwangchao
在项目要结束的时候,测试中发现每次进入带有编辑框的页面都会自动弹出软键盘,虽然不影响功能的正常使用,不过体验感真的很差劲,于是网上找了一些方法,在测试之后发现解决了我的问题,这篇博客用来记录,一遍以后需要使用的时候方便查找。
方法一:在 AndroidMainfest.xml中选择哪个activity,设置windowSoftInputMode属性为 adjustUnspecified|stateHidden
< activity android:name=".Main"
android:label="@string/app_name"
android:windowSoftInputMode="adjustUnspecified|stateHidden"
android:configChanges="orientation|keyboardHidden">
< intent-filter>
< action android:name="android.intent.action.MAIN" />
< category android:name="android.intent.category.LAUNCHER" />
< /intent-filter>
< /activity>
方法二:让 EditText失去焦点,使用EditText的clearFocus方法
EditText edit=(EditText)findViewById(R.id.edit);
edit.clearFocus();
方法三:强制隐藏Android输入法窗口
EditText edit=(EditText)findViewById(R.id.edit);
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(edit.getWindowToken(),0);
本人亲测方法一有效,就没有在测试其他的方法。