如何制作多边形矢量图稿

How to make polygonal vector artwork

我在想办法让

矢量图的类型,但我不知道如何制作我在应用程序的许多启动画面中看到任何提示都会有所帮助。

您可以创建一个 <vector> 可绘制对象并绘制一堆半透明形状。这是一个例子:

<vector
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="360dp"
    android:height="160dp"
    android:viewportWidth="360.0"
    android:viewportHeight="160.0">

    <path
        android:fillColor="#3000"
        android:pathData="M0 0h360v160h-360z"/>

    <path
        android:fillColor="#3000"
        android:pathData="M0 0h48L0 60z"/>

    <path
        android:fillColor="#3000"
        android:pathData="M0 160V40L100 50L140 160z"/>

    <path
        android:fillColor="#3000"
        android:pathData="M70 0L80 140L300 0z"/>

    <path
        android:fillColor="#3000"
        android:pathData="M300 0L280 160H360V0z"/>

    <path
        android:fillColor="#3000"
        android:pathData="M320 0L340 160H360V0z"/>

    <path
        android:fillColor="#3000"
        android:pathData="M100 0L100 50L260 160H360V0"/>

    <path
        android:fillColor="#3000"
        android:pathData="M0 160L80 140LL120 160"/>

</vector>

这显然不如您所附的图片漂亮,但它表明一般技术可以创建与您发布的图片相似的图片。