Keyboard icon indicating copy to clipboard operation
Keyboard copied to clipboard

解决软键盘弹出和收缩时表情面板切换跳闪的问题

Results 4 Keyboard issues
Sort by recently updated
recently updated
newest added

fix get keyboard heigh method and upgrade gradle plugin version

我们这边采用了这种方式去获取软键盘:楼主可以试一下,做到存在虚拟键盘可以关闭,一些刘海屏的时候做到无缝切换。 代码: /** * 获取键盘的高度 */ private int getSoftKeyboardHeight() { Rect rect = new Rect(); mWindow.getDecorView().getWindowVisibleDisplayFrame(rect); // 屏幕真实高度 int realHeight = mWindow.getDecorView().getRootView().getHeight(); // 虚拟键高度 ,遍历DecorView ViewTree 下的唯一子布局LinearLayout // 获取对应的bottomMargin 即可得到对应软键盘的高度,0为关闭了虚拟键盘...

效果还不错,希望继续完善