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

安卓飞机大战(六) 动态Gif图的添加

时间:2015-08-16 23:26:13      阅读:623      评论:0      收藏:0      [点我收藏+]

标签:加载动态图片   gif   gif包   安卓开发   

有两种方法

第一种  麻烦,需要把一张gif图分解帧,然后将帧一张一张绘制,很麻烦。



第二种,可以直接在网上下载一个drawable.gif 包

包里libs文件夹下有以下文件

技术分享












将这些文件全部复制到你写的安卓程序的libs文件夹下(有两个没用,不过没关系,都复制进去就行),这样gif 包就完成了,接下来就可以添加gif图片了!!



新建一个Layout


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    <pl.droidsonroids.gif.GifImageView
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/gif"
    />
    

</LinearLayout>


然后在MainActivity里


public class Begin_gif extends Activity {
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate( savedInstanceState );
        setContentView(R.layout.begin_gif);

        }

}



这样就可以播放你的gif图片了!!!


gif包在附件里,也可以从网上搜,然后下载




本文出自 “软件学习总结” 博客,请务必保留此出处http://bigcrab.blog.51cto.com/10626858/1685038

安卓飞机大战(六) 动态Gif图的添加

标签:加载动态图片   gif   gif包   安卓开发   

原文地址:http://bigcrab.blog.51cto.com/10626858/1685038

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