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/
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.