Blurry svg image in Android
Adding this to app build.gradle
helped me to fix the problem with blurry svg images:
android {
defaultConfig {
vectorDrawables.useSupportLibrary = true
}
}
In Android Manifest.xml, set for your activity (blur doesn't work when hardware acceleration is true)
android:hardwareAccelerated="false"
You can disable hardware acceleration on the VIEW level:
myView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);