android 软键盘弹出与隐藏
程序员文章站
2022-04-20 08:28:38
...
广大开发者在Android开发过程中应该都遇到过Activity中有的EditText,app进入这个页面后软键盘就会自动弹出,但是有时候也会遇见软键盘怎么也不自动弹出的情况,现在就给大家介绍如何让软件自动弹出和隐藏:
1)就是正常情况Android系统自己弹出,这个不做过多介绍
2)手动弹出,这样需要借助工具类:
public class ShowSoftInputUtil {
public static void showSoftInput(Context context, View view){
InputMethodManager imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
}
public static void hideDoftInput(Context context, View view){
InputMethodManager inputMethodManager = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
}
在Activity中调用ShowSoftInputUtil传入context和相应的控件;
3)在AndroidManifest中在对应的Activity中设置软键盘的显示模式为一直显示:
android:windowSoftInputMode="stateAlwaysVisible"
如果还是不可以就代码设置,在onCreate中setContentView之前写上这个代码:
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);
再设置EditText控件自动获取焦点
etInput.requestFocus();
etInput.setFocusable(true);
etInput.setFocusableInTouchMode(true);
setSwipeBackEnable(false);
这样就可以解决软键盘弹不出的问题。
上一篇: 软键盘的显示与隐藏
下一篇: 弹出软键盘(利用PopupWindow)