android逐帧动画如何让动画停在最后一张

官网说明:http://developer.android.com/guide/topics/graphics/drawable-animation.html
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="true">
    <item android:drawable="@drawable/rocket_thrust1" android:duration="200" />
    <item android:drawable="@drawable/rocket_thrust2" android:duration="200" />
    <item android:drawable="@drawable/rocket_thrust3" android:duration="200" />
</animation-list>


This animation runs for just three frames. By setting the android:oneshot attribute of the list to true, it will cycle just once then stop and hold on the last frame.
(设置android:oneshot="true"后动画只执行一次, 并且停留在最后一帧)

你可能感兴趣的:(android逐帧动画如何让动画停在最后一张)