Skip to content

Commit b1f874f

Browse files
Merge pull request #18 from douglasjunior/issue-11
NullPointerException in OnLayoutListeners
2 parents f809d73 + 7ba1f78 commit b1f874f

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

library/src/main/java/io/github/douglasjunior/androidSimpleTooltip/SimpleTooltip.java

+6
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,12 @@ public void onDismiss() {
326326
mOnDismissListener.onDismiss(this);
327327
mOnDismissListener = null;
328328

329+
SimpleTooltipUtils.removeOnGlobalLayoutListener(mPopupWindow.getContentView(), mLocationLayoutListener);
330+
SimpleTooltipUtils.removeOnGlobalLayoutListener(mPopupWindow.getContentView(), mArrowLayoutListener);
331+
SimpleTooltipUtils.removeOnGlobalLayoutListener(mPopupWindow.getContentView(), mShowLayoutListener);
332+
SimpleTooltipUtils.removeOnGlobalLayoutListener(mPopupWindow.getContentView(), mAnimationLayoutListener);
333+
SimpleTooltipUtils.removeOnGlobalLayoutListener(mPopupWindow.getContentView(), mAutoDismissLayoutListener);
334+
329335
mPopupWindow = null;
330336
}
331337

0 commit comments

Comments
 (0)