Show .gif with android.graphics.Movie

前端 未结 3 1434
夕颜
夕颜 2021-02-01 06:46

I\'m trying, create a view with an animated GIF..

When i try run the follow code in emulator all works fine. But when i try run in real Smart Phone, nothing happens..

3条回答
  •  佛祖请我去吃肉
    2021-02-01 07:21

    Don't turn off hardware acceleration for the whole application. That's crippling. Just turn it off for the view:

    setLayerType(View.LAYER_TYPE_SOFTWARE, null);
    

提交回复
热议问题