What are best practices for using SVG icons on Android?

前端 未结 12 1360
臣服心动
臣服心动 2020-12-12 11:46

I am about to create my first Android native (so not browser based) app and looking for some good practices regarding icon creating/provisioning. Since it s

12条回答
  •  心在旅途
    2020-12-12 11:55

    Android Support Library 23.2 Support Vector Drawables and Animated Vector Drawables

    1. add vectorDrawables.useSupportLibrary = true to your build.gradle file.
    2. Use app:srcCompat="@drawable/ic_add" instead of android:src="..." or setImageResource() for your ImageView

    http://android-developers.blogspot.sk/2016/02/android-support-library-232.html

提交回复
热议问题