I would like to use more vector drawings in my Android applications. Providing images isn't as space efficient or as scalable as I would like it to be.

Android provides a series of Drawable file formats, such as ShapeDrawable, which can be combined in a LayeredDrawable. To go very far down this path, it would be nice if there was a designer for visualizing the results, doing the drawing in, and handling all the resulting files.

C# WPF has Expression Blend, Adobe has Flash CS4, and the iPhone has Opacity. So my question is, is there a designer or drawing tool for Android?

Note: Other questions have talked about using SVG in Android. Android doesn't have native support for SVG, so the only way to do it is with an external library. I would like to avoid that and am asking for a developer side tool. An SVG to Drawable converter would be fine, but I'm not aware of one.

link|improve this question

60% accept rate
1  
+1 Good question. – Vikas Patidar Feb 1 '11 at 6:50
I think having a visual editor for Drawables would be great as I haven't seen anything that adequately fills this need. If you decide to try and create one like you suggested on your other question let me know I might be able to help out with coding/testing. I personally use a lot of ShapeDrawables so it would be useful to me. – instanceofTom Feb 2 '11 at 18:40
feedback

2 Answers

The closest thing I've found since asking this question is DroidDraw. It is targeted at showing the screen layouts such as LinearLayout. It did not seem to support ShapeDrawable and the file management seemed a little confusing.

I'm thinking that it would be a good place to start looking at how to write an application that does manage ShapeDrawable.

link|improve this answer
feedback

I faced the same problem and I've just released a little library on github that allow to export svg to drawable more quickly.

https://github.com/r3gis3r/svg2drawable

Hope can be useful for you.

link|improve this answer
Looking at the source code, is it only outputting .png files? – Nathan Aug 7 '11 at 15:45
Yes, for now only output .png file, but it would be very easy to change it in code. In the git hub repository, edit utils.py (github.com/r3gis3r/svg2drawable/blob/master/util.py#L74). Ligne 74. Change .png in anything else you want (supported by PIL) – r3gis3r Sep 23 '11 at 15:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.