直播带货源码,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 简单动画播放, 更多内容欢迎关注之后的文章
原创文章,作者:745907710,如若转载,请注明出处:https://blog.ytso.com/273010.html