我正在使用Android Studio 3.1.3。我试图使用动画列表构建启动屏幕。我的res / drawable文件夹中有一些.png图像,而这个当前.xml文件在同一文件夹中。
但它显示此消息: Element item is not allowed here
这是.xml文件中的代码片段:
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="true" >
<item
android:drawable="@drawable/splash00"
android:duration="100"/>
<item
android:drawable="@drawable/splash01"
android:duration="100"/>
<item
android:drawable="@drawable/splash02"
android:duration="100"/>
<item
android:drawable="@drawable/splash03"
android:duration="100"/>
.
.
.
</animation-list>
如何解决此问题?