转于:http://blog.csdn.net/up1up2up3/article/details/22682549

---------------------------------------------------------------------------------------

Android开源项目:GifView——Android显示GIF动画

作者:ant.cy.liao

主页:http://code.google.com/p/gifview/

下载:http://code.google.com/p/gifview/downloads/list

简介:android中现在没有直接显示gif的view,只能通过mediaplay来显示,且还常常不能正常显示出来,为此写了这个gifview,其用法和imageview一样

使用方法:

1-把GifView.jar加入你的项目。

2-在xml中配置GifView的基本属性,GifView继承自View类,和Button、ImageView一样是一个UI控件。如:

[java] view plain copy
  1. <com.ant.liao.GifViewandroid:id="@+id/gif2"
  2. android:layout_height="wrap_content"android:layout_width="wrap_content"
  3. android:paddingTop="4px"android:paddingLeft="14px"android:enabled="false"/>


3-在代码中配置常用属性:

[java] view plain copy
  1. //从xml中得到GifView的句柄
  2. gf1=(GifView)findViewById(R.id.gif1);
  3. //设置Gif图片源
  4. gf1.setGifImage(R.drawable.gif1);
  5. //添加监听器
  6. gf1.setOnClickListener(this);
  7. //设置显示的大小,拉伸或者压缩
  8. gf1.setShowDimension(300,300);
  9. //设置加载方式:先加载后显示、边加载边显示、只显示第一帧再显示
  10. gf1.setGifImageType(GifImageType.COVER);


GifView的Jar包共有四个类:

GifAction.java:

观察者类,监视GIF是否加载成功

[java] view plain copy
  1. packagecom.ant.liao;
  2. publicinterfaceGifAction{
  3. /**
  4. *gif解码观察者
  5. *@hide
  6. *@paramparseStatus解码是否成功,成功会为true
  7. *@paramframeIndex当前解码的第几帧,当全部解码成功后,这里为-1
  8. */
  9. publicvoidparseOk(booleanparseStatus,intframeIndex);}


GifFrame.java

里面三个成员:当前图片、延时、下张Frame的链接。

[java] view plain copy
  1. packagecom.ant.liao;
  2. importandroid.graphics.Bitmap;
  3. publicclassGifFrame{
  4. /**
  5. *构造函数
  6. *@paramim图片
  7. *@paramdel延时
  8. */
  9. publicGifFrame(Bitmapim,intdel){
  10. image=im;
  11. delay=del;
  12. }
  13. publicGifFrame(Stringname,intdel){
  14. imageName=name;
  15. delay=del;
  16. }
  17. /**图片*/
  18. publicBitmapimage;
  19. /**延时*/
  20. publicintdelay;
  21. /**当图片存成文件时的文件名*/
  22. publicStringimageName=null;
  23. /**下一帧*/
  24. publicGifFramenextFrame=null;
  25. }

GifDecoder.java

解码线程类

http://code.google.com/p/gifview/source/browse/trunk/src/com/ant/liao/GifDecoder.java

GifView.java

主类,包括常用方法,如GifView构造方法、设置图片源、延迟、绘制等。

http://code.google.com/p/gifview/source/browse/trunk/src/com/ant/liao/GifView.java

Android开源项目:android-gif-drawable——Android显示GIF动画

android-gif-drawable

Views andDrawablefor animated GIFs in Android.

项目地址:https://github.com/koral--/android-gif-drawable

Overview

Bundled GIFLib via JNI is used to render frames. This way should be more efficient thanWebVieworMovieclasses.
Animation starts automatically and run only ifViewwith attachedGifDrawableis visible.

Download

Latest release downloads

Setup

Gradle (Android Studio)

Insert the following dependency tobuild.gradlefile of your project.

dependencies {    compile 'pl.droidsonroids.gif:android-gif-drawable:1.0.+'}

Note that Maven central repository should be defined eg. in top-levelbuild.gradlelike this:

buildscript {    repositories {        mavenCentral()    }}allprojects {    repositories {        mavenCentral()    }}

Maven dependency

SDK with API level 19 is needed. If you don't have it in your local repository, downloadmaven-android-sdk-deployerand install SDK level 19:mvn install -P 4.4(from maven-android-sdk-deployer directory). Then add dependency inpom.xmlof your project:

<dependency>    <groupId>pl.droidsonroids.gif</groupId>    <artifactId>android-gif-drawable</artifactId>    <version>insert latest version here</version>    <type>aar</type></dependency>

Requirements

  • Android 1.6+ (API level 4+)

Building from source

  • Android NDKneeded to compile native sources

Usage

From XML

The simplest way is to useGifImageView(orGifImageButton) like a normalImageView:

<pl.droidsonroids.gif.GifImageView    android:layout_width="match_parent"    android:layout_height="match_parent"    android:src="@drawable/src_anim"    android:background="@drawable/bg_anim"    />

If drawables declared byandroid:srcand/orandroid:backgroundare GIF files then they will be automatically recognized asGifDrawables and animated. If given drawable is not a GIF then mentioned Views work like plainImageViewandImageButton.

GifTextViewallows you to use GIFs as compound drawables and background.

<pl.droidsonroids.gif.GifTextView    android:layout_width="match_parent"    android:layout_height="match_parent"    android:drawableTop="@drawable/left_anim"    android:drawableStart="@drawable/left_anim"    android:background="@drawable/bg_anim"    />

From Java code

GifImageView,GifImageButtonandGifTextViewhave also hooks for setters implemented. So animated GIFs can be set by callingsetImageResource(int resId)andsetBackgroundResource(int resId)

GifDrawablecan be constructed directly from various sources:

        //asset file        GifDrawable gifFromAssets = new GifDrawable( getAssets(), "anim.gif" );        //resource (drawable or raw)        GifDrawable gifFromResource = new GifDrawable( getResources(), R.drawable.anim );        //byte array        byte[] rawGifBytes = ...        GifDrawable gifFromBytes = new GifDrawable( rawGifBytes );        //FileDescriptor        FileDescriptor fd = new RandomAccessFile( "/path/anim.gif", "r" ).getFD();        GifDrawable gifFromFd = new GifDrawable( fd );        //file path        GifDrawable gifFromPath = new GifDrawable( "/path/anim.gif" );        //file        File gifFile = new File(getFilesDir(),"anim.gif");        GifDrawable gifFromFile = new GifDrawable(gifFile);        //AssetFileDescriptor        AssetFileDescriptor afd = getAssets().openFd( "anim.gif" );        GifDrawable gifFromAfd = new GifDrawable( afd );        //InputStream (it must support marking)        InputStream sourceIs = ...        BufferedInputStream bis = new BufferedInputStream( sourceIs, GIF_LENGTH );        GifDrawable gifFromStream = new GifDrawable( bis );        //direct ByteBuffer        ByteBuffer rawGifBytes = ...        GifDrawable gifFromBytes = new GifDrawable( rawGifBytes );

InputStreams are closed automatically in finalizer if GifDrawable is no longer needed so you don't need to explicitly close them. Callingrecycle()will also close underlaying input source.

Note that all input sources need to have ability to rewind to the begining. It is required to correctly play animated GIFs (where animation is repeatable) since subsequent frames are decoded on demand from source.

Animation control

GifDrawableimplements anAnimatableandMediaPlayerControlso you can use its methods and more:

  • stop()- stops the animation, can be called from any thread
  • start()- starts the animation, can be called from any thread
  • isRunning()- returns whether animation is currently running or not
  • reset()- rewinds the animation, does not restart stopped one
  • setSpeed(float factor)- sets new animation speed factor, eg. passing 2.0f will double the animation speed
  • seekTo(int position)- seeks animation (within current loop) to givenposition(in milliseconds)Only seeking forward is supported
  • getDuration()- returns duration of one loop of the animation
  • getCurrentPosition()- returns elapsed time from the beginning of a current loop of animation
UsingMediaPlayerControl

Standard controls for a MediaPlayer (like inVideoView) can be used to control GIF animation and show its current progress.

Just setGifDrawableas MediaPlayer on yourMediaControllerlike this:

    @Override    protected void onCreate ( Bundle savedInstanceState )    {        super.onCreate( savedInstanceState );        GifImageButton gib = new GifImageButton( this );        setContentView( gib );        gib.setImageResource( R.drawable.sample );        final MediaController mc = new MediaController( this );        mc.setMediaPlayer( ( GifDrawable ) gib.getDrawable() );        mc.setAnchorView( gib );        gib.setOnClickListener( new OnClickListener()        {            @Override            public void onClick ( View v )            {                mc.show();            }        } );    }

Retrieving GIF metadata

  • getLoopCount()- returns a loop count as defined inNETSCAPE 2.0extension
  • getNumberOfFrames()- returns number of frames (at least 1)
  • getComment()- returns comment text (nullif GIF has no comment)
  • getFrameByteCount()- returns minimum number of bytes that can be used to store pixels of the single frame
  • getAllocationByteCount()- returns size (in bytes) of the allocated memory used to store pixels of given GifDrawable
  • getInputSourceByteCount()- returns length (in bytes) of the backing input data
  • toString()- returns human readable information about image size and number of frames (intended for debugging purpose)

Advanced

  • recycle()- provided to speed up freeing memory (like inandroid.graphics.Bitmap).
  • getError()- returns last error details

References

This library uses code fromGIFLIB5.0.5 andSKIA.

License

MIT License
SeeLICENSEfile.

PS:

GifView:已知bug: 如果图档过大,会出现OOM

if the gif image is too large,maybe OOM.

为了解决图档太大时的OOM,我想把gif解析时的图片先存入到文件中,在显示时直接从文件中读入,但这样的话,显示的效果不好。

而android-gif-drawable并没有此问题,底层解码使用C实现,极大的提高了解码效率,同时很大程度上避免了OOM现象出现。

更多相关文章

  1. Android(安卓)Bitmap与String互转
  2. Android获取图片Uri/path
  3. Android(安卓)compress Image
  4. Android——自定义Log显示
  5. 【Android】图片切换组件ImageSwitcher的运用
  6. Android(安卓)创建圆形背景图片
  7. Android(安卓)base64 上传图片
  8. Android显示网络图片相关实现方法浅谈
  9. Android日历只显示年月,只显示年

随机推荐

  1. android软键盘把页面挤上去的解决方法
  2. [android]android命令行截图
  3. Android中xml解析
  4. Android在应用中固定屏幕方向
  5. Android应用程序的权限列表
  6. android ExpandableListView简单例子
  7. android 去ListView滑动阴影
  8. 修改ZXing for Android为竖屏模式
  9. android的四大组件及其生命周期
  10. Android(安卓)布局中 如何使控件居中