Android xml双头箭头

ilmyapht  于 2023-01-03  发布在  Android
关注(0)|答案(1)|浏览(125)

我在网上搜索,没有找到这样的xml drawable的解决方案。
简单地说,我想创建这样的水平箭头与两个头https://cdn4.iconfinder.com/data/icons/universal-3-2/16/143-512.png。如何在xml中做到这一点?
谢谢大家的帮助。

3b6akqbq

3b6akqbq1#

这种事?

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24dp"
    android:height="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
  <group android:scaleX="0.046871338"
      android:scaleY="0.046871338">
    <path
        android:pathData="M508.93,248.35L402.27,141.69c-4.27,-4.05 -10.99,-3.95 -15.04,0.21c-3.95,4.16 -3.95,10.67 0,14.83l88.43,88.43H36.4l88.43,-88.43c4.05,-4.27 3.95,-10.99 -0.21,-15.04c-4.16,-3.95 -10.67,-3.95 -14.83,0L3.12,248.35c-4.16,4.16 -4.16,10.88 0,15.04L109.79,370.06c4.27,4.05 10.99,3.95 15.04,-0.21c3.95,-4.16 3.95,-10.67 0,-14.83L36.4,266.59h439.15L387.12,355.02c-4.27,4.05 -4.37,10.88 -0.21,15.04c4.05,4.27 10.88,4.37 15.04,0.21c0.11,-0.11 0.21,-0.21 0.21,-0.21l106.67,-106.67C513.09,259.34 513.09,252.51 508.93,248.35z"
        android:fillColor="#000000"/>
  </group>
</vector>

对于将来(或者如果您需要something slightly different),下面是如何获得它:
1.查找具有适当许可的SVG(上面链接的是CC0)。
1.下载下来。

  1. Import the SVG,它将自动转换为XML可绘制对象。

相关问题