矢量Drawable在圈子里

qba*_*ait 6 svg android android-vectordrawable

是否有一种简单的方法来生成Vector Drawable,它是一个带有现有矢量可绘制图标的圆圈?

例: 现有的矢量绘图

生成的矢量drawable,里面有空图标的圆圈

Dim*_*Dim 9

我会建议这样的事情:

<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item
    android:gravity="fill"
    android:drawable="@drawable/ic_brightness_1_black_24dp"

    />
    <item
        android:gravity="center"
        android:drawable="@drawable/ic_call_black_24dp"
        android:top="20dp"
        android:bottom="20dp"
        android:left="20dp"
        android:right="20dp"
        />

</layer-list>
Run Code Online (Sandbox Code Playgroud)

具有ID ic_brightness_1_black_24dp和ic_call_black_24dp的资源是导入的矢量drawable.

ic_brightness_1_black_24dp:

<vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:width="24dp"
        android:height="24dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
    <path
        android:fillColor="#303F9F"
        android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0"/>
</vector>
Run Code Online (Sandbox Code Playgroud)

和ic_call_black_24dp:

<vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:width="24dp"
        android:height="24dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">
    <path
        android:fillColor="#FFFFFF"
        android:pathData="M6.62,10.79c1.44,2.83 3.76,5.14 6.59,6.59l2.2,-2.2c0.27,-0.27 0.67,-0.36 1.02,-0.24 1.12,0.37 2.33,0.57 3.57,0.57 0.55,0 1,0.45 1,1V20c0,0.55 -0.45,1 -1,1 -9.39,0 -17,-7.61 -17,-17 0,-0.55 0.45,-1 1,-1h3.5c0.55,0 1,0.45 1,1 0,1.25 0.2,2.45 0.57,3.57 0.11,0.35 0.03,0.74 -0.25,1.02l-2.2,2.2z"/>
</vector>
Run Code Online (Sandbox Code Playgroud)


Ano*_*ous 8

由于没有人提到如何使用矢量绘图来做到这一点,因为问题说这里是做到这一点的方法。

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="144dp"
    android:height="144dp"
    android:viewportWidth="144"
    android:viewportHeight="144">
  
  <path
      android:pathData="M72,72m-50,0a50,50 0,1 1,100 0a50,50 0,1 1,-100 0"
      android:strokeWidth="9"
      android:fillColor="#00000000"
      android:strokeColor="#fff"/>

 </vector>




M72,72m -> circle's center coordinates
50` -> the circle's radius
100` -> circle's diameter
strokeWidth -> the ring's thickness
Run Code Online (Sandbox Code Playgroud)
  • 要将其制成圆盘而不是圆环,请更改fillColor

  • 要使圆的大小减半,请将所有出现的 50 更改为 25,将所有出现的 100 更改为 50。对于其他尺寸,请相应更改。

  • 要在视口内移动圆,请更改圆的坐标(数字72

这些数字显然与视口大小有关。72 是 144 的中心,在本例中是定义的视口尺寸。要将其置于 200 视口大小的中心,您需要使用 100

在此输入图像描述

在此输入图像描述


jav*_*ian 6

实际上它非常简单,您只需将两个路径包含在一个向量中,因此您的路径将如下所示:

<vector xmlns:android="http://schemas.android.com/apk/res/android"
        android:width="24dp"
        android:height="24dp"
        android:viewportWidth="24.0"
        android:viewportHeight="24.0">

    <path
        android:fillColor="#303F9F"
        android:pathData="M12,12m-10,0a10,10 0,1 1,20 0a10,10 0,1 1,-20 0"/>

    <path
        android:fillColor="#FFFFFF"
        android:pathData="M6.62,10.79c1.44,2.83 3.76,5.14 6.59,6.59l2.2,-2.2c0.27,-0.27 0.67,-0.36 1.02,-0.24 1.12,0.37 2.33,0.57 3.57,0.57 0.55,0 1,0.45 1,1V20c0,0.55 -0.45,1 -1,1 -9.39,0 -17,-7.61 -17,-17 0,-0.55 0.45,-1 1,-1h3.5c0.55,0 1,0.45 1,1 0,1.25 0.2,2.45 0.57,3.57 0.11,0.35 0.03,0.74 -0.25,1.02l-2.2,2.2z"/>

</vector>
Run Code Online (Sandbox Code Playgroud)

结果显然取决于彼此相关的路径的大小,并且由于没有图形工具来缩放它们是一件痛苦的事情,所以DimDim 的解决方案layer-list容易实现。