(android开源库android-gif-drawable)第一篇 eclipse使用这个开源库
如果想显示gif图片 推荐使用Glide开源库
android-gif-drawable我就不推荐了
android开源库android-gif-drawable的使用
android的开源库是用来在android上显示gif图片的。我在网上查了一下,大家说这个框架写的不错,加载大的gif图片 不会内存溢出,于是我就想试试这个开源库,我下了作者的源代码和例子,但是我却跑不起来。不知道为什么,我又到网上去找使用这个开源库的例子发现有一个,我也下载了下来,发现还是跑不起来。我决定自己好好试试这个源代码,终于在我的努力下现在可以用了。废话完了 现在教大家怎么用这个库。大家不想看怎么做的 可以到后面下载DEMO代码。
1.android-gif-drawable的源代码下载地址:https://github.com/koral--/android-gif-drawable
2.点开它,如下图所示
3.点击下载后,我们可以看到下面这个界面 PS:是下载.aar文件 我写错了
4.下载好这个文件后,我们右键选择打开方式为
5.然后解压这个文件到一个空的文件夹,复制也可以
6.然后得到如下
7.点开jni文件夹得到如下
8.复制这4个文件夹和开源库的JAR包(classes.jar)到你android代码中位置如下图所示
9.下面是作者教大家的使用方法
PS: 想看原版的 请到这里来看:https://github.com/koral--/android-gif-drawable
From XML
The simplest way is to use GifImageView (or GifImageButton) like a normal ImageView:
<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 by android:src and/or android:background are GIF files then they will be automatically recognized as GifDrawables and animated. If given drawable is not a GIF then mentioned Views work like plainImageView and ImageButton.
GifTextView allows 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, GifImageButton and GifTextView have also hooks for setters implemented. So animated GIFs can be set by calling setImageResource(int resId) and setBackgroundResource(int resId)
GifDrawable can 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. Calling recycle() 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
GifDrawable implements an Animatable and MediaPlayerControl so 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 given position (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
Using MediaPlayerControl
Standard controls for a MediaPlayer (like in VideoView) can be used to control GIF animation and show its current progress.
Just set GifDrawable as MediaPlayer on your MediaController like 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 in NETSCAPE 2.0 extension
- getNumberOfFrames() - returns number of frames (at least 1)
- getComment() - returns comment text (null if 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)
10.DEMO下载地址:http://pan.baidu.com/s/1gdd27v1

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。
持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。
- 上一篇
拯救安卓碎片化,谷歌推 Project Treble 加速系统更新
Android 系统跨设备版本更新是一个老难题。当 Google 发布新版本 Android,Nexus 和 Pixel 等亲儿子机型获得更新时,其他 Android OEM 厂商大多只能耸耸肩膀,开始设法适配。如果用户幸运,他们可能会在六个月内获得系统更新,而此时 Google 已经转移到更新版本的 Android 上了。 在 2017 I/O 大会之前,Google 抛出了一篇博客文章,针对 Android 的更新问题,推出 “Project Treble” 。 这是一个将 Android 系统模块化的计划,将操作系统框架代码与“特定供应商”硬件代码分开。理论上说,这种变化将允许在设备上提醒一个新的 Android 更新,而无需芯片厂商的任何参与。 Google 称之为“迄今为止 Android 的 low-level 系统架构最大的变化”,它已经存在于 Google Pixel 的 Android O 开发者预览中。 Android 版本发布步骤: Project Treble 针对的是上图的第一步,正如 Google 的 OEM 厂商通过一个“兼容性测试套件”(CTS),确保第...
- 下一篇
90%的 Android 设备受影响:Google 已着手修复
安全研究公司Check Point近日披露的信息显示广泛应用于智能手机中的高通芯片存在四个非常严重的安全漏洞,表示全球至少有9亿台设备因此存在安全隐患。而其中最为严重的 是QuadRooter漏洞,Google在随后的调查中承认90%的Android设备存在隐患,甚至这些漏洞还未修复。 Check Point披露了四个Google和合作伙伴尚未修复的安全漏洞,随后高通方面立即提供了修复补丁,目前Google已经部署了四个补丁中的三个,接下来会以安全更新的方式推出。 根 据调查Android 4.2系统设备都存在QuadRooter漏洞,这意味着90%的Android设备都存在危险。Google向外媒Android Central透露:“我们非常感激Check Point为改善移动生态系统安全所做出的不懈努力。在最近的安全补丁更新中我们已经修复了四个漏洞中的三个。第四个漏洞CVE-2016-5340将会 在即将到来的Android安全公告中进行修复,众多Android合作厂商也必须要尽快跟进。我们的Verify应用和SafetyNet保护能够帮助 用户识别、阻止和移除存在该漏洞的应用程序...
相关文章
文章评论
共有0条评论来说两句吧...
文章二维码
点击排行
推荐阅读
最新文章
- SpringBoot2编写第一个Controller,响应你的http请求并返回结果
- SpringBoot2更换Tomcat为Jetty,小型站点的福音
- CentOS8,CentOS7,CentOS6编译安装Redis5.0.7
- Jdk安装(Linux,MacOS,Windows),包含三大操作系统的最全安装
- CentOS8编译安装MySQL8.0.19
- Springboot2将连接池hikari替换为druid,体验最强大的数据库连接池
- SpringBoot2整合Thymeleaf,官方推荐html解决方案
- SpringBoot2整合Redis,开启缓存,提高访问速度
- CentOS7编译安装Gcc9.2.0,解决mysql等软件编译问题
- Docker使用Oracle官方镜像安装(12C,18C,19C)