Reputation: 6160
I used https://inloop.github.io/svg2android/ to convert 50+ SVG's to XML as suggested in this answer. Now I have a .zip containing all the XML files. Where do I put them to be able to use them in Android Studio?
I know I can import one by one but that's what I'm trying to avoid in the first place.
Upvotes: 9
Views: 6290
Reputation: 3648
Just put the xml files in drawable folder, and you will be able to retrieve them using R.drawable.names
Upvotes: 5