3

我正在 Java Eclipse 上为 Android 开发一些应用程序。至于现在一切正常,但今天突然布局图形显示停止工作,无论我尝试创建新布局还是尝试打开现有布局。它显示无 XML 内容。请为您的文档添加根视图或布局。错误。我试图跟随android sdk main.out.xml 解析错误?说明,但我在Eclipse -> Window -> Preferences -> Run/Debug -> Launching -> Lauch Configuration -> Filter checked launch configuration types中没有XSL选项 。我也没有任何 .out.xml 文件。

这是我的 XML 和清单文件。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world"
        tools:context=".FirstScreenActivity" />

</RelativeLayout>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="s.manipulator"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="14"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".FirstScreenActivity"
            android:label="@string/title_activity_first_screen" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="android.app.LauncherActivity" />
        </activity>
        <activity
            android:name=".MainMenuActivity"
            android:label="@string/title_activity_main_menu" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="s.manipulator.FirstScreenActivity" />
        </activity>
    </application>

</manifest>
4

2 回答 2

4

轻松修复:

右键单击布局文件 -> 打开方式 -> Android 布局编辑器

在 Eclipse 中,转到 Window -> Preferences -> General -> Editors -> File Associations 并选择 *.xml,然后在关联编辑器列表中的 Android Layout Editor 条目上按 Default。

于 2012-12-08T16:16:43.030 回答
0

我最终要做的是Legacy Android Xml Resources Editor从 kumar_android 所指的同一个列表中选择并将其设置为默认值。当您单击添加按钮时,我必须从出现的列表中选择它。之后我重新启动了eclipse,一切都很好。

于 2014-06-30T08:21:55.360 回答