https://juejin.cn/post/6844903489051557902?from=singlemessage&isappinstalled=0#comment
package com.xiucai.common.manager; import android.graphics.Rect; import android.util.Log; import android.view.View; import android.view.ViewTreeObserver; import java.util.LinkedList; import java.util.List; /** * Created by SuperD on 2017/5/12. */ public class SoftKeyBroadManager implements ViewTreeObserver.OnGlobalLayoutListener{ public interface SoftKeyboardStateListener { void onSoftKeyboardOpened(int keyboardHeightInPx); void onSoftKeyboardClosed(); } private final List<SoftKeyboardStateListener> listeners = new LinkedList<SoftKeyboardStateListener>(); private final View activityRootView; private int lastSoftKeyboardHeightInPx; private boolean isSoftKeyboardOpened; public SoftKeyBroadManager(View activityRootView) { this(activityRootView, false); } public SoftKeyBroadManager(View activityRootView, boolean isSoftKeyboardOpened) { this.activityRootView = activityRootView; this.isSoftKeyboardOpened = isSoftKeyboardOpened; activityRootView.getViewTreeObserver().addOnGlobalLayoutListener(this); } @Override public void onGlobalLayout() { final Rect r = new Rect(); //r will be populated with the coordinates of your view that area still visible. activityRootView.getWindowVisibleDisplayFrame(r); final int heightDiff = activityRootView.getRootView().getHeight() - (r.bottom - r.top); Log.d("SoftKeyboardStateHelper", "heightDiff:" + heightDiff); if (!isSoftKeyboardOpened && heightDiff > 500) { // if more than 100 pixels, its probably a keyboard... isSoftKeyboardOpened = true; notifyOnSoftKeyboardOpened(heightDiff); //if (isSoftKeyboardOpened && heightDiff < 100) } else if (isSoftKeyboardOpened && heightDiff < 500) { isSoftKeyboardOpened = false; notifyOnSoftKeyboardClosed(); } } public void setIsSoftKeyboardOpened(boolean isSoftKeyboardOpened) { this.isSoftKeyboardOpened = isSoftKeyboardOpened; } public boolean isSoftKeyboardOpened() { return isSoftKeyboardOpened; } /** * Default value is zero (0) * * @return last saved keyboard height in px */ public int getLastSoftKeyboardHeightInPx() { return lastSoftKeyboardHeightInPx; } public void addSoftKeyboardStateListener(SoftKeyboardStateListener listener) { listeners.add(listener); } public void removeSoftKeyboardStateListener(SoftKeyboardStateListener listener) { listeners.remove(listener); } private void notifyOnSoftKeyboardOpened(int keyboardHeightInPx) { this.lastSoftKeyboardHeightInPx = keyboardHeightInPx; for (SoftKeyboardStateListener listener : listeners) { if (listener != null) { listener.onSoftKeyboardOpened(keyboardHeightInPx); } } } private void notifyOnSoftKeyboardClosed() { for (SoftKeyboardStateListener listener : listeners) { if (listener != null) { listener.onSoftKeyboardClosed(); } } } }
不管是全屏或者其他情况,使用这个工具类来监听软键盘就可以了,具体的用法:
SoftKeyBroadManager mManager =new SoftKeyBroadManager ("根布局"); //添加软键盘的监听,然后和上面一样的操作即可. mSoftKeyBroadManager.addSoftKeyboardStateListener(); //注意销毁时,得移除监听 mSoftKeyBroadManager.removeSoftKeyboardStateListener();
标签:activityRootView,heightDiff,void,isSoftKeyboardOpened,监听,listener,软键盘,Android,pu From: https://www.cnblogs.com/zuiniub/p/17702760.html