直播帶貨原始碼,Android 簡單動畫播放

zhibo系統開發發表於2022-06-09

直播帶貨原始碼,Android 簡單動畫播放

1、編寫屬性動畫xml檔案

<animation-list xmlns: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 簡單動畫播放, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2899637/,如需轉載,請註明出處,否則將追究法律責任。

相關文章