TileMode Repeat with Vector Pattern

We can re-draw using tileMode="repeat"

 <bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/some_png" android:tileMode="repeat" android:dither="true" /> 

It only works if drawable is a bitmap.

Is there any similar way to repeat a vector vector?

+6
source share

All Articles