Java Eclipse で Android 用のアプリをいくつか開発しています。今のところすべて問題ありませんでしたが、今日、新しいレイアウトを作成しようとしても、既存のレイアウトを開こうとしても、レイアウトのグラフィック表示が突然機能しなくなりました。XML コンテンツが表示されません。ドキュメントにルート ビューまたはレイアウトを追加してください。エラー。Android SDK の main.out.xml 解析エラーを追跡しようとしましたか? 手順ですが、 Eclipse -> Window -> Preferences -> Run/Debug -> Launching -> Launch 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>