1

我现在尝试在 Eclipse 中打开我的布局 xml 文件。我只得到错误

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

想知道为什么这是个问题,我的 xml 文件是正确的,例如:

<?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>

我试图右键单击 .xml 文件,然后使用 .xml 打开它Android Layout Editor,但在我的列表中找不到这个编辑器。我还尝试从“文件关联”下的“首选项”菜单中添加它,但此处未显示编辑器。唯一与 android 相关的 xml 编辑器是:

  • Android 二进制 XML 编辑器
  • Android 通用 XML 编辑器
  • Android 导出编辑器
  • Android 清单编辑器

有人知道为什么会这样吗?布局编辑器的bug太多了,如果google不更新的话我觉得这个工具很难用。。

4

1 回答 1

1

尝试通过SDK管理器更新android工具,我曾经遇到过这个问题,更新到最新版本已修复

于 2013-01-02T12:39:21.267 回答