我有一个SVG文件,其代码如下,动画。我想在Android原生应用程序中使用它。我该如何使用该svg文件?我知道使用svg滑行,我从下面的样本测试过。正常的svg正在工作但不是这个。 https://github.com/bumptech/glide/tree/master/samples/svg
<?xml version="1.0" encoding="utf-8"?>
<svg width='124px' height='124px' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="uil-ring-alt">
<rect x="0" y="0" width="100" height="100" fill="none" class="bk"></rect>
<circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.259)" fill="none" stroke-width="10" stroke-linecap="round"></circle><circle cx="50" cy="50" r="40" stroke="#ffffff" fill="none" stroke-width="6" stroke-linecap="round">
<animate attributeName="stroke-dashoffset" dur="3s" repeatCount="indefinite" from="0" to="502"></animate>
<animate attributeName="stroke-dasharray" dur="3s" repeatCount="indefinite" values="150.6 100.4;1 250;150.6 100.4"></animate>
</circle>
</svg>
请向我推荐任何图书馆或代码示例谢谢。