编程语言
首页 > 编程语言> > 直播带货源码,Android 简单动画播放

直播带货源码,Android 简单动画播放

作者:互联网

直播带货源码,Android 简单动画播放

1、编写属性动画xml文件

 


<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false" > 
 
    <item
        android:drawable="@drawable/indicate_bg1"
        android:duration="400"/>
    <item
        android:drawable="@drawable/indicate_bg2"
        android:duration="400"/>
</animation-list>
android:oneshot="false"设置是否循环,false为循环播放

2、ImageView添加背景

android:background="@anim/indicate_bg"

 

3、代码实现动画播放

 

AnimationDrawable spinner = (AnimationDrawable) imageView.getBackground();
spinner.start();

 

以上就是直播带货源码,Android 简单动画播放, 更多内容欢迎关注之后的文章

 

标签:动画,false,直播,drawable,Android,播放,android
来源: https://www.cnblogs.com/yunbaomengnan/p/16359172.html