7

现在我知道如何在android中绘制GIF图片了,代码如下:

public class GIFView extends View{        
private Movie movie;  
private InputStream is;  
private long moviestart;  
public GIFView(Context context) {  
    super(context);
    is=getResources().openRawResource(R.drawable.anim_cerca);  
    movie=Movie.decodeStream(is);
}  

@Override  
protected void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    long now=android.os.SystemClock.uptimeMillis();  

    if (moviestart == 0) 
        moviestart = now;  

    int relTime = (int)((now - moviestart) % movie.duration());
    movie.setTime(relTime);
    movie.draw(canvas,10,10);
    this.invalidate();
}  

}

最后是movie.draw(canvas,x,y)代码,其中x和y是gif图片的坐标(x=left,y=top)。但是我怎么能改变电影的宽度和高度呢?也许给出右边和底部的坐标,但是如何,在哪里?谢谢!

4

2 回答 2

19

我有同样的问题这是我的解决方案,在movie.draw之前的ondraw方法中添加这个代码

 canvas.scale((float)this.getWidth() / (float)movie.width(),(float)this.getHeight() /      (float)movie.height());

或者

canvas.scale(1.9f, 1.21f);//this changes according to screen size 
于 2013-12-13T20:50:18.403 回答
0

你可以使用

  implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.4'

库然后将其添加到 xml

 android:scaleType="fitXY"
于 2019-06-19T01:16:44.847 回答