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,所以在使用帧动画的时候要尽量使用过多尺寸过大的图片

posted @ 2016-09-09 17:00  水柠檬QAQ  阅读(419)  评论(1)    收藏  举报