Android软键盘d出和收起的监听

Android软键盘d出和收起的监听,第1张

Android软键盘d出和收起的监听

1.直接调用

SoftKeyboardHelper softKeyboardHelper = softKeyboardHelper = new SoftKeyboardHelper(this.context);
softKeyboardHelper.setKeyboardListener(rootView, new SoftKeyboardHelper.SoftKeyboardListener() {
            @Override
            public void onSoftKeyboardShow(int softKeyboardHeight) {
                ToastUtil.showToast("键盘d出");
                }
            }

            @Override
            public void onSoftKeyboardHide(int softKeyboardHeight) {
                ToastUtil.showToast("键盘收起");
                }
            }
        });
  1. SoftKeyboardHelper.class
/**
 * @Description 软键盘工具类
 */
public class SoftKeyboardHelper {
    public static final String TAG = "SoftKeyboard_Debug";
    private InputMethodManager imm;
    private final Context context;
    private int lastScreenOrientation;

    /**
     * 构造函数
     *
     * @param context 上下文
     */
    public SoftKeyboardHelper(Context context) {
        this.context = context;
        if (ScreenUtils.isPortrait()) {
            lastScreenOrientation = Configuration.ORIENTATION_PORTRAIT;
        } else {
            lastScreenOrientation = Configuration.ORIENTATION_LANDSCAPE;
        }
    }


    /**
     * 显示软键盘
     *
     * @param view 触发软键盘的EditText
     */
    public synchronized void showSoftKeyboard(EditText view) {
        if (imm == null) {
            imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
        }
        imm.showSoftInput(view, 0);
    }

    /**
     * 隐藏软键盘
     *
     * @param view 触发软键盘的EditText
     */
    public synchronized void hideSoftKeyboard(EditText view) {
        if (imm == null) {
            imm = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
        }
        if (view != null) {
            imm.hideSoftInputFromWindow(view.getWindowToken(), 0);
        }
    }


    /**
     * 监听软键盘d出监听
     *
     * @param parentLayout         父容器View
     * @param softKeyboardListener 监听接口
     */
    public void setKeyboardListener(final View parentLayout, final SoftKeyboardListener softKeyboardListener) {
        if (softKeyboardListener == null || parentLayout == null) {
            return;
        }
        parentLayout.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
            @Override
            public void onLayoutChange(View view, int left, int top, int right, int bottom,
                                       int oldLeft, int oldTop, int oldRight, int oldBottom) {
                int screenHeight = ScreenUtils.getScreenHeight();
                int currentScreenOrientation = -1;
                if (ScreenUtils.isPortrait()) {
                    currentScreenOrientation = Configuration.ORIENTATION_PORTRAIT;
                } else {
                    currentScreenOrientation = Configuration.ORIENTATION_LANDSCAPE;
                }
                //排除横竖屏切换引起的布局变化
                if (lastScreenOrientation != currentScreenOrientation) {
                    lastScreenOrientation = currentScreenOrientation;
                    return;
                }

                int defaultHeight = screenHeight / 3;
                if (oldBottom != 0 && bottom != 0 && (oldBottom - bottom > defaultHeight)) {
                    softKeyboardListener.onSoftKeyboardShow(0);
                } else if (oldBottom != 0 && bottom != 0 && (bottom - oldBottom > defaultHeight)) {
                    softKeyboardListener.onSoftKeyboardHide(0);
                }

            }
        });
    }


    /**
     * 软键盘事件监听接口
     */
    public interface SoftKeyboardListener {
        /**
         * 软键盘d出监听回调
         *
         * @param softKeyboardHeight 软键盘高度
         */
        void onSoftKeyboardShow(int softKeyboardHeight);

        /**
         * 软键盘隐藏监听回调
         *
         * @param softKeyboardHeight 软键盘高度
         */
        void onSoftKeyboardHide(int softKeyboardHeight);
    }
}

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/langs/725814.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-26
下一篇 2022-04-26

发表评论

登录后才能评论

评论列表(0条)

保存