情景在线
Element animation-list must be declared
在编写帧动画的xml文件时,将动画的xml文件放到了 res/anim目录中
<?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:oneshot="true"> <item android:drawable="@drawable/Horse1" android:duration="50"/> <item android:drawable="@drawable/Horse2" android:duration="50"/> <item android:drawable="@drawable/Horse3" android:duration="50"/> <item android:drawable="@drawable/Horse4" android:duration="50"/> <item android:drawable="@drawable/Horse5" android:duration="50"/> <item android:drawable="@drawable/Horse6" android:duration="50"/> <item android:drawable="@drawable/Horse7" android:duration="50"/> <item android:drawable="@drawable/Horse8" android:duration="50"/> </animation-list>
结果报错啦~Element animation-list must be declared
解决方法
animation-list代表的其实是Drawable资源。
把这些资源文件移动到drawable资源文件夹下即得到解决