有人可以提供代码和XML文件,以创建一个动画使用.png文件?我试过这里给出的那个http://developer.android.com/reference/android/graphics/drawable/AnimationDrawable.html
但是,一旦我输入,
<animation-list android:id="selected" android:oneshot="false">
<item android:drawable="@drawable/connected01" android:duration="50" />
<item android:drawable="@drawable/connected02" android:duration="50" />
<item android:drawable="@drawable/connected03" android:duration="50" />
<item android:drawable="@drawable/connected04" android:duration="50" />
<item android:drawable="@drawable/connected05" android:duration="50" />
</animation-list>我收到一个错误:"unbound prefix“
有人能说一说这是怎么做到的吗?
发布于 2011-01-27 20:18:17
我认为应该将xmlns:android="http://schemas.android.com/apk/res/android"添加到xml的第一项中。
https://stackoverflow.com/questions/4816098
复制相似问题