tileMode重复与矢量drawable

Gau*_*sth 10 android android-vectordrawable

我们可以通过使用重复绘制 tileMode="repeat"

<bitmap
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/some_png"
    android:tileMode="repeat"
    android:dither="true" />
Run Code Online (Sandbox Code Playgroud)

它只适用于drawable是位图的情况.

有没有类似的方法重复矢量drawable?