Android vector drawable editor

Viewed 23068

I'd like to modify existing Android drawable vector XML resource, but Android Studio let do it only in XML source.

Could you suggest a tool for "interactive" editing Android drawable XML?

Or may be there is a way to import such files to, say Incscape, or Adobe...

2 Answers

Here is my IDEA plugin : VectorPathTweaker

With this you can easily translate, scale, flip and transpose standard android vector drawables.

img

For installation you need to search for 'VectorPathTweaker' on the plugin market.

tips: you can tweak the values by scrolling the mouse wheel.

Is not really what you are asking but on latest version of Android Studio (3.2.1) you have a preview option for all the xml vectors. At this way, you can see the changes while editing the vector which can be very useful. You can find it on the right side of the Android Studio. Check at the screenshot I attach to you.Preview of a vecotr drawable

Related