Android显示GIF图片

时间:2023-01-27 15:28:53

Android系统默认是不支持GIF图片的播放的,但是我们有开源的GifView可以拿过来显示gif图片,下面记录使用GifView的方法:

我们的项目里需要导入GifView.jar包,如下图所示:

Android显示GIF图片

然后就可以在布局文件中使用GifView这个控件了,我们的布局文件如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    android:orientation="vertical" >
    
    <com.ant.liao.GifView
        android:id="@+id/gifView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        />

</LinearLayout>
Activity中的代码如下:

package com.example.testgifview;

import android.app.Activity;
import android.os.Bundle;

import com.ant.liao.GifView;

public class MainActivity extends Activity {
	
	private GifView gifView;

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		initView();
	}
	
	private void initView(){
		gifView = (GifView) findViewById(R.id.gifView);
		gifView.setGifImage(R.drawable.test);
	}

}
显示资源文件里的gif图片,可以用GifView的setGifImage方法,效果如下图:

Android显示GIF图片