Reputation: 103
Can I use vector graphics in Android? I have to vector images, how can i use it as application icon and how can I connect it to ImageView in Android?
Upvotes: 3
Views: 2833
Reputation: 46
From Android 5.0 (API level 21) you can use vector drawable in your app. You can use new Android Studio tool called: Vector Asset Studio. See link below for a complete explanation:
Upvotes: 1
Reputation: 1944
There is "svg-android" for svg files support for Android, but not native. I don't think you can use it as application icon.
Latest source code: https://github.com/pents90/svg-android
Documentation: https://code.google.com/p/svg-android/
Upvotes: 0