繁体   English   中英

当Entry获得焦点时隐藏键盘

[英]Hide keyboard when Entry gets focus

情况

我有一个使用外部键盘的Android应用程序,并且想在Entry控件获得焦点时隐藏软键盘。

参考

遵循此android文档,它声明以下内容:

注意 :如果用户的设备连接了硬件键盘,则不会出现软输入法。

但是,在某些Android设备中,当Entry获得焦点时,软输入确实会出现

在这种情况下,如何隐藏软输入?

提前致谢!

您可以使用以下代码隐藏软键盘

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

获取您的EditText的实例

EditText editText = (EditText) findViewById(R.id.edittext);

为防止默认软键盘出现在EditText中,请覆盖以下事件

//使自定义键盘出现

    edittext.setOnFocusChangeListener(new View.OnFocusChangeListener() {
        @Override
        public void onFocusChange(View v, boolean hasFocus) {
            if (hasFocus) showCustomKeyboard(v);
            else hideCustomKeyboard();
        }
    });
    edittext.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            showCustomKeyboard(v);
        }
    });
    edittext.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            EditText edittext = (EditText) v;
            int inType = edittext.getInputType();       // Backup the input type
            edittext.setInputType(InputType.TYPE_NULL); // Disable standard keyboard
            edittext.onTouchEvent(event);               // Call native handler
            edittext.setInputType(inType);              // Restore input type
            return true; // Consume touch event
        }
    });
}
public void hideCustomKeyboard() {
    keyboardView.setVisibility(View.GONE);
    keyboardView.setEnabled(false);
}
public void showCustomKeyboard( View v) {
    keyboardView.setVisibility(View.VISIBLE);
    keyboardView.setEnabled(true);
    if( v!=null ){
        ((InputMethodManager)getSystemService(Activity.INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(v.getWindowToken(), 0);
    }
}
public boolean isCustomKeyboardVisible() {
    return keyboardView.getVisibility() == View.VISIBLE;
}
@Override public void onBackPressed() {
    if( isCustomKeyboardVisible() ) hideCustomKeyboard(); else this.finish();
}

免责声明:-我已经在我的应用中实现了自定义键盘,并编写了本教程-http://inducesmile.com/android/how-to-create-an-android-custom-keyboard-application/

这对我有用:

public static void DisableSoftKeyboard (EditText editText)
{
    ((InputMethodManager)GetSystemService(Context.InputMethodService)).HideSoftInputFromWindow(editText.WindowToken, 0);
    if (Build.VERSION.SdkInt >= BuildVersionCodes.Honeycomb) {
        editText.SetRawInputType (InputTypes.ClassText);
        editText.SetTextIsSelectable (true);
    } else {
        editText.SetRawInputType (InputTypes.Null);
        editText.Focusable = true;
    }
}

实现方式:

editText.FocusChange+= (sender, e) => {
    DisableSoftKeyboard(editText);
};

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM