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 tried to open my layout xml files in Eclipse now. And I only gets the error

No XML content. Please add a root view or layout to your document.

Wonder why this is a problem, my xml files are correct, E.G:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/widget32"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
    android:background="#e4e8ed">

    <Logic.TouchImageView
        android:id="@+id/right_finger"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

I tried to right click the .xml file, and open it with the Android Layout Editor, but I couldn't find this editor in my list. I also tried to add it from the Preferences menu, under the File Associations, but the editor is not showed here. The only android relatated xml editors are:

  • Android Binary XML editor
  • Android Common XML Editor
  • Android Export Editor
  • Android Manifest Editor

Does anybody know why this happens? The layout editor has so many bugs, and I find it hard to use this tool if google doesn't update it..

share|improve this question

1 Answer

up vote 3 down vote accepted

try updating android tools via SDK manager, I had this problem once, updating to latest version fixed that

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.