We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
目前我试过有效的方法是监听软键盘弹出时引起的根布局高度的变化,当其变化值大于屏幕高度的三分之一时,即视为软键盘弹出。
llRoot.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() { @Override public void onGlobalLayout() { Rect rect = new Rect(); llRoot.getWindowVisibleDisplayFrame(rect); int screenHeight = ScreenUtils.getSreenHeight(context); int heightDiff = screenHeight - rect.bottom; if (heightDiff <= screenHeight / 3) { isKeyboardShown = false; } else { isKeyboardShown = true; } } });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
目前我试过有效的方法是监听软键盘弹出时引起的根布局高度的变化,当其变化值大于屏幕高度的三分之一时,即视为软键盘弹出。
The text was updated successfully, but these errors were encountered: