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 have made a XML file:

<?xml version="1.0" encoding="utf-8"?>
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
  <item
    android:state_pressed="true"
   android:drawable="@drawable/calender_h" />
  <item
   android:state_pressed="false"
  android:drawable="@drawable/calender_n" />  
</selector>

but it is giving me the following error:

Failed to parse file G:\eclipseHeliosWorkspace\WineCountry\res\drawable\calendar_selector.xml

What could be the problem?

share|improve this question
Just clean the project from project->clean – Paresh Mayani Oct 11 '11 at 5:27
clean project and rebuld it. – user370305 Oct 11 '11 at 5:30
I have done that also... but no differnce – ekjyot Oct 11 '11 at 5:33
whats the problem? just check Eclipse -> Problem window for it. and post here. – user370305 Oct 11 '11 at 5:37
i have checked problem window ebven no problem is being shown there – ekjyot Oct 11 '11 at 6:24

6 Answers

up vote 3 down vote accepted

I'm not sure it's the same, but Similar issue happened to me when updating to ADT 15, in a library project. this is the google issue that currently still opened: 21046.

That's what worked for me:

  1. Remove the library declaration of the project.
  2. Open the layout causing the error (the one which using the selector) in graphical layout.
  3. Clean the project (Project -> Clean)
  4. Close and reopen eclipse. (the layout should be ok now)
  5. You can set the project as library again.

Hope this helps! (if it's still relevant...)

share|improve this answer

I've had the same problem too, and there were no problems in Eclipse->Problems for me either.

You might consider adding in a default state for the drawable (as practiced in this ImageButton example at the Android Developers website), shown in this modified version of your presented code:

<?xml version="1.0" encoding="utf-8"?>
<selector
    xmlns:android="http://schemas.android.com/apk/res/android">
<item
    android:state_pressed="true"
    android:drawable="@drawable/calender_h" />
<item
    android:state_pressed="false"
    android:drawable="@drawable/calender_n" />  
<item 
    android:drawable="@drawable/calender_n" />
</selector>

Otherwise, I would say (from something I've experienced just now in Eclipse) that you should push the app out to your phone or emulator anyway. In Eclipse, I'm staring at a "Failed to parse..." message in my Graphical Layout tab of the layout XML file I am having troubles with, but on my phone, I see the image exactly as it should be (responds perfectly to button presses and whatnot).

share|improve this answer
Yes, I pushed it to my phone anyway and it worked. – Igor Ganapolsky Dec 12 '11 at 16:45

You XML is fine. Are you missing the drawables? Try cleaning the project once. If that doesn't help, there might be some invisible special characters in the XML if you have copy-pasted this from somewhere.

Anyway, Look at the problems window. It should give you more details on the error.

share|improve this answer

From Eclipse, right click the xml file and choose Open With -> XML Editor. In this, choose the Design tab. You may notice there is a mysterious child element after your <item>'s which is just empty. Right click on it and choose remove.

Just spent an hour or so trying to fix this problem and this turned out to be the fix, probably some invisible characters that cause parsing to fail. Anyway, hope that helps anyone else having this problem!

share|improve this answer
  1. Failed to parse XML file for android
  2. check that your drawables exist at the appropriate paths
  3. check for inivisible characters

4. I`ve also ran into the same problem. What I found is that each of the StateListDrawable states (pressed, selected, focused, etc.) actually expects a valid drawable (png, jpg, gif, etc.). So, that means, something like this will cause the parse error problem:

<item android:state_selected="true" />

share|improve this answer

I also ran into this. The layout xml files and main.xml would not parse. if you chose the graphical view for main.xml you would not get any buttons (in my case). What i found is that Eclipse was set to C++ rather than java. Setting it to the java perspective, closing, then reopening Eclipse fixed the issue.

Now Eclipse is doing other strange stuff like forgetting to connect to the phone intermittently.

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.