@@ -78,8 +78,8 @@ public class SimpleTooltip implements PopupWindow.OnDismissListener {
78
78
private static final int mDefaultArrowHeightRes = R .dimen .simpletooltip_arrow_height ;
79
79
80
80
private final Context mContext ;
81
- private final OnDismissListener mOnDismissListener ;
82
- private final OnShowListener mOnShowListener ;
81
+ private OnDismissListener mOnDismissListener ;
82
+ private OnShowListener mOnShowListener ;
83
83
private PopupWindow mPopupWindow ;
84
84
private final int mGravity ;
85
85
private final boolean mDismissOnInsideTouch ;
@@ -94,7 +94,7 @@ public class SimpleTooltip implements PopupWindow.OnDismissListener {
94
94
private final boolean mTransparentOverlay ;
95
95
private final float mMaxWidth ;
96
96
private View mOverlay ;
97
- private final ViewGroup mRootView ;
97
+ private ViewGroup mRootView ;
98
98
private final boolean mShowArrow ;
99
99
private ImageView mArrowView ;
100
100
private final Drawable mArrowDrawable ;
@@ -297,15 +297,19 @@ public void onDismiss() {
297
297
mAnimator .removeAllListeners ();
298
298
mAnimator .end ();
299
299
mAnimator .cancel ();
300
+ mAnimator = null ;
300
301
}
301
302
}
302
303
303
304
if (mRootView != null && mOverlay != null ) {
304
305
mRootView .removeView (mOverlay );
305
306
}
307
+ mRootView = null ;
308
+ mOverlay = null ;
306
309
307
310
if (mOnDismissListener != null )
308
311
mOnDismissListener .onDismiss (this );
312
+ mOnDismissListener = null ;
309
313
310
314
mPopupWindow = null ;
311
315
}
@@ -346,8 +350,10 @@ public boolean onTouch(View v, MotionEvent event) {
346
350
private final ViewTreeObserver .OnGlobalLayoutListener mLocationLayoutListener = new ViewTreeObserver .OnGlobalLayoutListener () {
347
351
@ Override
348
352
public void onGlobalLayout () {
349
- if (dismissed )
353
+ if (dismissed ) {
354
+ SimpleTooltipUtils .removeOnGlobalLayoutListener (mPopupWindow .getContentView (), this );
350
355
return ;
356
+ }
351
357
352
358
if (mMaxWidth > 0 && mContentView .getWidth () > mMaxWidth ) {
353
359
SimpleTooltipUtils .setWidth (mContentView , mMaxWidth );
@@ -368,10 +374,10 @@ public void onGlobalLayout() {
368
374
private final ViewTreeObserver .OnGlobalLayoutListener mArrowLayoutListener = new ViewTreeObserver .OnGlobalLayoutListener () {
369
375
@ Override
370
376
public void onGlobalLayout () {
377
+ SimpleTooltipUtils .removeOnGlobalLayoutListener (mPopupWindow .getContentView (), this );
371
378
if (dismissed )
372
379
return ;
373
380
374
- SimpleTooltipUtils .removeOnGlobalLayoutListener (mPopupWindow .getContentView (), this );
375
381
mPopupWindow .getContentView ().getViewTreeObserver ().addOnGlobalLayoutListener (mAnimationLayoutListener );
376
382
mPopupWindow .getContentView ().getViewTreeObserver ().addOnGlobalLayoutListener (mShowLayoutListener );
377
383
if (mShowArrow ) {
@@ -415,12 +421,14 @@ public void onGlobalLayout() {
415
421
private final ViewTreeObserver .OnGlobalLayoutListener mShowLayoutListener = new ViewTreeObserver .OnGlobalLayoutListener () {
416
422
@ Override
417
423
public void onGlobalLayout () {
424
+ SimpleTooltipUtils .removeOnGlobalLayoutListener (mPopupWindow .getContentView (), this );
418
425
if (dismissed )
419
426
return ;
420
427
421
- SimpleTooltipUtils .removeOnGlobalLayoutListener (mPopupWindow .getContentView (), this );
422
428
if (mOnShowListener != null )
423
429
mOnShowListener .onShow (SimpleTooltip .this );
430
+ mOnShowListener = null ;
431
+
424
432
mContentLayout .setVisibility (View .VISIBLE );
425
433
}
426
434
};
@@ -471,8 +479,10 @@ public void onAnimationEnd(Animator animation) {
471
479
private final ViewTreeObserver .OnGlobalLayoutListener mAutoDismissLayoutListener = new ViewTreeObserver .OnGlobalLayoutListener () {
472
480
@ Override
473
481
public void onGlobalLayout () {
474
- if (dismissed )
482
+ if (dismissed ) {
483
+ SimpleTooltipUtils .removeOnGlobalLayoutListener (mPopupWindow .getContentView (), this );
475
484
return ;
485
+ }
476
486
477
487
if (!mRootView .isShown ())
478
488
dismiss ();
0 commit comments