音频播放时小喇叭动画

来源:互联网 发布:阿里云邮箱开启smtp 编辑:程序博客网 时间:2024/04/28 19:03

drawable 目录下创建button_play_animation.xml 动画

<?xml version="1.0" encoding="utf-8"?><animation-list xmlns:android="http://schemas.android.com/apk/res/android" >     <item android:drawable="@drawable/ques_play0" android:duration="100" />    <item android:drawable="@drawable/ques_play1" android:duration="100" />    <item android:drawable="@drawable/ques_play2" android:duration="100" />    <item android:drawable="@drawable/ques_play3" android:duration="100" /></animation-list>
((ImageView) v).setImageResource(R.drawable.button_play_animation);AnimationDrawable animationDrawable = (AnimationDrawable) ((ImageView) v).getDrawable();

然后在播放的监听事件中添加

animationDrawable.start(); //开始的时候调用animationDrawable.stop(); //动画结束调用

在播放结束之后可以给ImageView设置drawable

((ImageView) v).setImageResource(R.drawable.ques_play3);
1 0