9

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?

Seraphim's
  • 12,559
  • 20
  • 88
  • 129

1 Answers1

10

The direct answer to your question

(Does View.LAYER_TYPE_SOFTWARE disables the hardware acceleration or not?)

is YES.

It actually disable hardware acceleration, but only at a view level, i.e. hardware acceleration is disabled in ImageView in your case, while setting android:hardwareAccelerated="false" will disable hardware acceleration for your whole application.

For more detailed, please refer this link.

Adil Soomro
  • 37,609
  • 9
  • 103
  • 153
Wei WANG
  • 1,748
  • 19
  • 23