标签: android-studio svg
我知道android studio不支持SVG中的所有元素。
到目前为止,我知道:
<defs> <stop> <use> <linearGradient>
尚不支持。
这里是对svg元素的引用 https://developer.mozilla.org/en-US/docs/Web/SVG/Element
答案 0 :(得分:3)
转换器的源代码位于:SVG2Vector.java
从中可以看出,截至目前,支持以下元素(至少在某种程度上):
<polygon>,<rect>,<circle>,<line>,<path>,<g>
<polygon>
<rect>
<circle>
<line>
<path>
<g>