-2

I have seen many many questions with this theme. For example this. But nothing I found worked.

I want to add my own loading animation and I have a SVG file with this animation that works perfect in Chrome.

It doesn't have to be a nice solution it just has to work. Do you have any ideas? Did I missed Something? If it helpf I can also add the svg file.

cproeller
  • 107
  • 1
  • 12

1 Answers1

1

None of the available SVG libraries for Android support animation at this time.

Right now you have two choices.

  1. If your SVG is simple enough, convert it to a VectorDrawable, and then to an AnimatedVectorDrawable. You might find ShapeShifter helpful in this process.
  2. Use a WebView and display your SVG in that.
Paul LeBeau
  • 97,474
  • 9
  • 154
  • 181