我有一个 4 帧的 animation.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/male01a" android:duration="4000" />
<item android:drawable="@drawable/male01b" android:duration="1100" />
<item android:drawable="@drawable/male01c" android:duration="1100" />
<item android:drawable="@drawable/male01d" android:duration="300" />
</animation-list>
无论如何我可以在这里为每个可绘制对象使用某种变量吗?很像使用“@string/animation1”,其中animation1 指向Strings.xml 中的“@drawable/male01a”。但是我需要一些方法来更改代码中的可绘制对象,比如male02a。