I wonder why if I set
<application
android:hardwareAccelerated="false"
using svg-android i see no image (due to hw acceleration problem?), but if I set
imageView.setLayerType(View.LAYER_TYPE_SOFTWARE, null);
I can get it to work.
Does View.LAYER_TYPE_SOFTWARE
disables the hw acceleration or not?