-
- Notifications
You must be signed in to change notification settings - Fork 764
Closed
Labels
Description
- 系统版本:Android 8.0 华为P9
- 库版本:2.2.1
- 问题描述/重现步骤:Activity下先弹窗BottomSheetDialog,然后再弹出BasePopup,此时现象是BasePopup在Activity之上,在BottomSheetDialog之下。
- 问题代码/截图:
- 报错信息:无
//布局&动画 @Override public View onCreateContentView() { return createPopupById(R.layout.public_popup_more); } @Override protected Animation onCreateShowAnimation() { return getTranslateVerticalAnimation(1f, 0, 250); } @Override protected Animation onCreateDismissAnimation() { return getTranslateVerticalAnimation(0, 1f, 250); } //BasePopupWindow调用方式 showPopupWindow(); Reactions are currently unavailable