Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I read this example and I'm trying to use it. I put this in drawable folder as somth.xml:

 <animation-list android:id="selected" android:oneshot="false">
    <item android:drawable="@drawable/img1" android:duration="50" />
    <item android:drawable="@drawable/img2" android:duration="50" />
 </animation-list>

I also put it in anim folder I try to add header like:

<?xml version="1.0" encoding="utf-8"?>

But give me an error like this:

Error in an XML file: aborting build.

What is wrong?

share|improve this question
Which API level are you using? Are you certain that the compilation error is coming from this file? – Paul Lammertsma Sep 23 '11 at 11:38

2 Answers

up vote 0 down vote accepted

Strange, it seems that android:id is not a valid attribute for frame animations.

Try removing that attribute and/or adding xmlns:android="http://schemas.android.com/apk/res/android" to <animation-list>.

share|improve this answer

had you inserted required drawable? or you can clean and build the project

Eclipse>Project>clean 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.