Android中AnimationDrawable使用的简单实例
程序员文章站
2022-10-09 14:30:46
首先,可以在drawable文件夹下定义一个xml的文件。如下所示:
复制代码 代码如下:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true">
<item android:drawable="@drawable/compass_1" android:duration="70" />
<item android:drawable="@drawable/compass_2" android:duration="70" />
<item android:drawable="@drawable/compass_3" android:duration="70" />
<item android:drawable="@drawable/compass_4" android:duration="70" />
<item android:drawable="@drawable/compass_5" android:duration="70" />
</animation-list>
animationdrawable ad = (animationdrawable) getresources().getdrawable(r.drawable.bootanimation);
得到animationdrawable对象。再将该对象设为当前view的backgroud。
mview.setbackgrounddrawable(ad);
接着,就可以调用 ad.start()方法和ad.stop()方法来启动和停止该动画。
注意:必须设为当前view的background,否则start和stop该动画是没有效果的。
首先,可以在drawable文件夹下定义一个xml的文件。如下所示:
复制代码 代码如下:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true">
<item android:drawable="@drawable/compass_1" android:duration="70" />
<item android:drawable="@drawable/compass_2" android:duration="70" />
<item android:drawable="@drawable/compass_3" android:duration="70" />
<item android:drawable="@drawable/compass_4" android:duration="70" />
<item android:drawable="@drawable/compass_5" android:duration="70" />
</animation-list>
根标签为animation-list,其中oneshot代表着是否只展示一遍,设置为false会不停的循环播放动画。其中,每一个item是一帧,android:duration="400"表示每帧持续400ms,android:drawable是每帧要显示的图片。
接下来,代码中使用:
复制代码 代码如下:
animationdrawable ad = (animationdrawable) getresources().getdrawable(r.drawable.bootanimation);
得到animationdrawable对象。再将该对象设为当前view的backgroud。
复制代码 代码如下:
mview.setbackgrounddrawable(ad);
接着,就可以调用 ad.start()方法和ad.stop()方法来启动和停止该动画。
注意:必须设为当前view的background,否则start和stop该动画是没有效果的。
上一篇: 贫血怎么办 5按摩法补气血
下一篇: golang json 成结构体
推荐阅读
-
简单讲解iOS应用开发中的MD5加密的相关使用
-
Android中的全局变量与局部变量使用小结
-
简单了解Linux系统中pgrep与pkill命令的使用
-
node.js中debug模块的简单介绍与使用
-
Android使用ListView实现滚轮的动画效果实例
-
Android使用OkHttp上传图片的实例代码
-
OpenCV中的新函数connectedComponentsWithStats使用(python和c++实例)
-
在Android Studio中Parcelable插件的简单使用教程
-
简单介绍HTML5中audio标签的使用
-
Android MotionEvent中getX()和getRawX()的区别实例详解