其他分享
首页 > 其他分享> > 如何在Android中将GIF文件适合屏幕大小

如何在Android中将GIF文件适合屏幕大小

作者:互联网

我正在使用电影类播放gif动画文件,但无法适应屏幕.

如何将gif文件缩放或适合屏幕尺寸?

我已经使用GIF视图自定义视图并使用Movie类播放动画.

解决方法:

您可以使用以下代码执行此操作:

    float scaleWidth = (float) ((screenwidth / (1f*gifwidth)));//add 1f does the trick
    float scaleHeight = (float) ((screenheight / (1f*gifheight)));
    canvas.scale(scaleWidth, scaleHeight);
    mMovie.draw(canvas, 0, 0);//mMovie is my gif picture

标签:animated-gif,android,view
来源: https://codeday.me/bug/20190729/1573186.html