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
if (loadingPopup != null && loadingPopup.isShowing()) { loadingPopup.dismiss(); }
Fix:
/** * PopupWindow是否处于展示状态 */ public boolean isShowing() { return mPopupWindow == null ? false : mPopupWindow.isShowing(); }
The text was updated successfully, but these errors were encountered:
一般来说,popup的回收只有activity已经destroy之后才会发生,或者是lazypopup中,请问您是否符合上述两种情况之一?
不过这里确实会存在这个问题,感谢指出~
Sorry, something went wrong.
@TxcA fixed in 【Candy 2.2.3.20200311】
No branches or pull requests
Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean razerdp.basepopup.PopupWindowProxy.isShowing()' on a null object reference
Fix:
The text was updated successfully, but these errors were encountered: