I am working on a simple animation using the animation-list attribute. I
have all my sequenced images in the drawable-xhdpi folder and the first
line of my XML looks like this:
<item android:drawable="@drawable/animation_00000" android:duration="30" />
To keep things tidy, I decided to create a new folder called "seq" inside
of the drawable-xhdpi and moved my images inside. Of course I got errors
in my animation.xml file, so I changed the first line to:
<item android:drawable="@drawable/seq/animation_00000" android:duration="30"
/>
Still showing an error so could someone help. Thanks.