totond / TextPathView

A View with text path animation!
MIT License
1.91k stars 214 forks source link

存在内存泄漏 #15

Closed crazecoder closed 5 years ago

crazecoder commented 6 years ago

建议在onDetachedFromWindow里stopAnimation

totond commented 6 years ago

好的,下个版本加入

crazecoder commented 6 years ago

我的代码

 @Override
    protected void onWindowVisibilityChanged(int visibility) {
        super.onWindowVisibilityChanged(visibility);
        if (visibility == VISIBLE) {
            startAnimation(0, 1);
        } else {
            stopAnimation();
        }
    }

    @Override
    protected void onDetachedFromWindow() {
        stopAnimation();
        super.onDetachedFromWindow();
    }