在Fragment中显示/隐藏软键盘事件

时间:2015-08-10 15:41:44

标签: android android-softkeyboard

有很多关于寻找显示/隐藏软键盘事件的帖子。 我发现自己处于需要根据片段中的软键状态更改图标的情况。

我尝试实现onMeasure,但我不能在我的片段中覆盖它。 是否有一种(相对)无痛的方式在我的片段中获得一个干净的显示/隐藏软键盘事件,或者我应该放弃船舶吗?

2 个答案:

答案 0 :(得分:1)

可悲但真实 - android在软件键盘上没有原生显示事件。

隐藏键盘的一个方法就是检查输入的符号和后退按钮(例如textEdit会收到后退按钮) - 但它不够灵活。

另一个可能的解决方案是: 在活动中覆盖onMeasure,然后通知观察者(模式观察者) - 例如片段。片段应订阅并取消订阅onPause onResume事件。活动代码的类似内容:

private class DialogActivityLayout extends LinearLayout {

        public DialogActivityLayout(Context context, AttributeSet attributeSet) {
            super(context, attributeSet);
            LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            inflater.inflate(R.layout.activity_dialog, this);
        }

        @Override
        protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            final int proposedHeight = MeasureSpec.getSize(heightMeasureSpec);
            final int actualHeight = getHeight();

            /* Layout loaded */
            if (actualHeight == 0 || proposedHeight == actualHeight) {
                super.onMeasure(widthMeasureSpec, heightMeasureSpec);
                return;
            }

            if (proposedHeight > actualHeight) {
                DialogActivity.this.onKeyboardHide();
            } else {
                DialogActivity.this.onKeyboardShow();
            }
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        }
    }

我不确定但是我记得它只适用于LinearLayout,当然活动应该设置adjustResize标志(以编程方式或在显示集中)

另一个(我更好的方法)是使用globalTree观察者

SoftKeyboard open and close listener in an activity in Android?

答案 1 :(得分:0)

经过一番努力,我能够抽象出一种方法,只要我需要显示或隐藏键盘而不使用我在许多答案中看到的SHOW_FORCED,我就可以调用该方法,结果是键盘打开,即使在没有文字输入的新活动。

我在 onGlobalLayout 中使用此code来检查键盘是否打开,然后在我的方法中我决定是否要打开或关闭。

以下是代码:

检查它是否打开:

private static boolean isKeyboardVisible(Activity activity) {
    Rect r = new Rect();
    View contentView = activity.findViewById(android.R.id.content);
    contentView.getWindowVisibleDisplayFrame(r);
    int screenHeight = contentView.getRootView().getHeight();
    int keypadHeight = screenHeight - r.bottom;

    return (keypadHeight > screenHeight * 0.15);
}

执行我需要的操作(这里我称之为上述方法):

public static void toggleKeyboard(final Activity activity, final boolean showKeyboard) {
    final InputMethodManager imm =
            (InputMethodManager) activity.getSystemService(Context.INPUT_METHOD_SERVICE);

    // The Handler is needed because the method that checks if the keyboard
    // is open need some time to get the updated value from the activity,
    // e.g. when my activity return to foreground. 
    new Handler().postDelayed(new Runnable() {
        public void run() {
            // This 'if' just check if my app still in foreground 
            // when the code is executed to avoid any problem.
            // I've leave out of the answer to keep short, you may use your own.
            if(Tools.isAppInForeground(activity)) {
                // Check the keyboard.
                boolean isVisible = isKeyboardVisible(activity);

                // If I want to show the keyboard and it's not visible, show it!
                if (showKeyboard && !isVisible) {
                    imm.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT,
                            InputMethodManager.HIDE_IMPLICIT_ONLY);

                // If I want to hide and the keyboard is visible, hide it!
                } else if (!showKeyboard && isVisible) {
                    imm.toggleSoftInput(InputMethodManager.HIDE_IMPLICIT_ONLY, 0);
                }
            }
        }
    }, 100);

}

要使用,我只需这样打电话:

toggleKeyboard(myactivity, true); // show
// or
toggleKeyboard(myactivity, false); // hide