码迷,mamicode.com
首页 > 移动开发 > 详细

Android显示GIF图片

时间:2014-08-04 14:32:37      阅读:266      评论:0      收藏:0      [点我收藏+]

标签:android gif

<span style="font-family: KaiTi_GB2312; background-color: rgb(255, 255, 255);">今天我们研究一下如何在Android手机上显示GIF动态图片。</span>

首先需要在src目录下新建一个自定义的View,代码如下:

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Movie;
import android.util.AttributeSet;
import android.view.View;

public class MyGifView extends View {
	
	//表示开始播放gif图片的绝对时间
	private long movieStart = 0;
	//movie对象管理gif图片里面的多个帧
	private Movie movie;

	public MyGifView(Context context, AttributeSet attrs) {
		super(context, attrs);
		movie = Movie.decodeStream(context.getResources().openRawResource(
				R.drawable.horse));
	}

	@Override
	protected void onDraw(Canvas canvas) {
		long currentTime = System.currentTimeMillis();
		// 第一次播放
		if (movieStart == 0) {
			movieStart = currentTime;
		}
		
		//循环播放
		if (movie != null) {
			int duration = movie.duration();
			int relTime = (int) ((currentTime - movieStart) % duration);
			movie.setTime(relTime);
			movie.draw(canvas, 0, 0);
			// 强制重绘
			invalidate();
		}
		
		//如果只想播放一次,只需判断currentTime-movieStart的值大于duration就不重绘即可

		super.onDraw(canvas);
	}
}

接着写一个Activity,用来显示gif图片:

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

public class MainActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
	}
}

XML布局文件是:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="${relativePackage}.${activityClass}" >

    <com.example.gifdemo.MyGifView
        android:id="@+id/iv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_margin="20dp" />

</RelativeLayout>

效果图如下:

bubuko.com,布布扣


整个示例工程文件下载链接:

Android显示GIF图片


Android显示GIF图片,布布扣,bubuko.com

Android显示GIF图片

标签:android gif

原文地址:http://blog.csdn.net/bear_huangzhen/article/details/38366701

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!