EditTex隐藏、可编辑等状态

1、在OnCreat()方法中写下面代码

隐藏输入框

getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN);

有可编辑键盘
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE);

2、有时1的方法可能会失效,需要用的下面的方法

//软键盘隐藏
InputMethodManager im = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
im.hideSoftInputFromWindow(getCurrentFocus().getApplicationWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS);

3、当方法1、2不能满足需求的时候

//动态隐藏阮键盘
public static void hideSoftInput(Activity activity){
View view = activity.getWindow().peekDecorView();
if(view != null){
InputMethodManager inputmanager = (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);
inputmanager.hideSoftInputFromWindow(view.getWindowToken(), 0);
}
}


public static void hideSoftInput(Context context,EditText edit){
edit.clearFocus();
InputMethodManager inputmanager = (InputMethodManager)context.getSystemService(Context.INPUT_METHOD_SERVICE);
inputmanager.hideSoftInputFromWindow(edit.getWindowToken(), 0);
}


// 动态显示软键盘
public static void showSoftInput(Context context,EditText edit){
edit.setFocusable(true);
edit.setFocusableInTouchMode(true);
edit.requestFocus();
InputMethodManager inputManager = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.showSoftInput(edit, 0);
}


4、

// 点击空白区域 自动隐藏软键盘
public boolean onTouchEvent(MotionEvent event) {
if (null != this.getCurrentFocus()) {
InputMethodManager mInputMethodManager = (InputMethodManager) getSystemService(INPUT_METHOD_SERVICE);
return mInputMethodManager.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(), 0);
}
return super.onTouchEvent(event);
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值