2

有没有可能有这样的动画:

<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false" >

    <item
        android:drawable="@drawable/pr_l_b01"
        android:duration="@dont-know-what/animation_frame_duration"/>
    <item
        android:drawable="@drawable/pr_l_b02"
        android:duration="@dont-know-what/animation_frame_duration"/>
    <item
        android:drawable="@drawable/pr_l_b03"
        android:duration="@dont-know-what/animation_frame_duration"/>

</animation-list>

attrs.xml中:

<dont-know-what name="animation_frame_duration"/></dont-know-what>

?

4

1 回答 1

8

看看android开发者中的duration属性。

这也可能是对包含此类型值的资源(形式为“@[package:]type:name”)或主题属性(形式为“?[package:][type:]name”)的引用.

在 values.xml 中插入持续时间值,如下所示:

<resources>
    <integer name="duration">700</integer>
</resources>

并像这样使用它:

<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
    android:oneshot="false" >

    <item
        android:drawable="@drawable/pr_l_b01"
        android:duration="@integer/duration"/>

</animation-list>
于 2013-09-30T15:52:24.250 回答