Weird flickering with DashPathEffect animation

后端 未结 1 619
感情败类
感情败类 2020-12-19 21:14

I\'m trying to make a path animation with DashPathEffect. Have to be able to replay it multiple times, using a button.

Based on http://www.curious-creature.org/2013/

相关标签:
1条回答
  • 2020-12-19 22:08

    Just found a solution for that. Apparently the problem is the hardware acceleration that is somewhat buggy with the DashPathEffect. Just call

    setLayerType(View.LAYER_TYPE_SOFTWARE, null);
    

    in your view and that should fix it.

    0 讨论(0)
提交回复
热议问题