音频播放时小喇叭动画

drawable 目录下创建button_play_animation.xml 动画


<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);

你可能感兴趣的:(Android)