Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm wondering how vector drawing in Android with the Shape class may resemble another vector drawing standard.

Since Shape is a Drawable, and Drawables are usually defined as XML, it sounds a lot like the vector drawing commands in SVG.

My question is this: Has anybody created an XSLT transformation, or other mechanism, for converting an SVG drawing description into Android Shapes?

share|improve this question
1  
24 upvotes, 17K views, a question that quite a few people are apparently interested in, and some answers pointing to some interesting solutions. In what sense is that not "constructive" and not "supported by facts"? – Buggieboy Oct 23 '12 at 3:01
8  
voted to reopen. Really fed up of the aggressive closing of questions by people who apparently don't understand the question but act anyway. (the question is IMHO way better than the similar questions) – Adam Jan 10 at 12:09
1  
Voted to reopen, @Adam 100% agreement, the dogma on SO is getting excessive. – Slomojo Mar 12 at 11:35

closed as not constructive by casperOne Jul 12 '12 at 12:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

6 Answers

Another non-GPL'd library (this one is Apache License 2.0), the one used in Google's Androidify app: svg-android

https://github.com/pents90/svg-android

share|improve this answer

Well, not exactly. But I do have ported libsvg to android, which enables you to load SVG files and plot them to a Canvas.

Please check out:

https://launchpad.net/libsvg-android

share|improve this answer
Web site says you have to download using bazaar, simple enough! – Anton P Jun 23 '10 at 12:31
1  
If only it wasn't GPL! Only good for Free software, just so you know – Mondain Jan 27 '12 at 20:38
up vote 5 down vote accepted

The closest thing that I could find was svg4mobile.

While I don't believe that it does transformations to Drawables XML, it does read the svg and make the appropriate calls to the Drawable classes.

share|improve this answer

Besides the 2 GPL libraries mentioned, there is a commercial library called TinyLine that implements the SVG Tiny subset, which although more limited may be a better licensing choice, if you want to create a non-GPL'd application.

share|improve this answer

Currently some people including me work on it independently.
You may find working solution in these articles:
  Android. ImageView with SVG Support.
  Android ImageView and Drawable with SVG support

share|improve this answer

The great AndEngine has an extension for loading SVG and rasterizing it into the texture with any resolution, with color replacement and other great features. Really works. For example you can try a free game by engine author.

Note: The engine best suited for full-screen 2D games and is based on OpenGL 2 view. LGPL

share|improve this answer

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