Android为TV端助力 帧动画

首先在res/drawable/name1.xml/定义一组图片集合:

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable = "@drawable/a" android:duration="500"/>
<item android:drawable = "@drawable/b" android:duration="500"/>
<item android:drawable = "@drawable/c" android:duration="500"/>

</animation-list>

在activity调用如下

 注意帧动画比较容易引起oom,所以在使用帧动画的时候要尽量使用过多尺寸过大的图片

原文地址:https://www.cnblogs.com/xiaoxiaing/p/5857294.html