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
XPopup版本 如2.10.0
手机系统和型号 任何安卓手机 Android 15
描述你的问题 bottom弹窗会被导航栏遮挡,100%出现,低版本不会
弹出的代码如下 new XPopup.Builder(getActivity()) .moveUpToKeyboard(false) .isCenterHorizontal(true) .asCustom(popupView) .show();
The text was updated successfully, but these errors were encountered:
XPopup版本 如2.10.0 手机系统和型号 任何安卓手机 Android 15 描述你的问题 bottom弹窗会被导航栏遮挡,100%出现,低版本不会 弹出的代码如下 new XPopup.Builder(getActivity()) .moveUpToKeyboard(false) .isCenterHorizontal(true) .asCustom(popupView) .show();
那应该是 Android 15 edge-to-edge 得埚了
Sorry, something went wrong.
XPopup版本 如2.10.0 手机系统和型号 任何安卓手机 Android 15 描述你的问题 bottom弹窗会被导航栏遮挡,100%出现,低版本不会 弹出的代码如下 new XPopup.Builder(getActivity()) .moveUpToKeyboard(false) .isCenterHorizontal(true) .asCustom(popupView) .show(); 那应该是 Android 15 edge-to-edge 得埚了
这个需要你给底部的布局添加系统navigatorBar的padding来处理
ViewCompat.setOnApplyWindowInsetsListener(view) { v, insets -> val systemInsets = insets.getInsets(WindowInsetsCompat.Type.navigationBars()) v.setPadding(0, 0, 0, systemInsets.bottom) insets }
No branches or pull requests
XPopup版本
如2.10.0
手机系统和型号
任何安卓手机 Android 15
描述你的问题
bottom弹窗会被导航栏遮挡,100%出现,低版本不会
弹出的代码如下
new XPopup.Builder(getActivity())
.moveUpToKeyboard(false)
.isCenterHorizontal(true)
.asCustom(popupView)
.show();
The text was updated successfully, but these errors were encountered: