1

Eclipse (API レベル 14、BlankActivity、Tabs+Swipe) を使用して新しいプロジェクトを作成しました。

srcフォルダー全体@Overrideに修正可能なエラーが含まれています。ただし、AndroidManifest.xmlファイルには次のエラーが表示されます。

The markup in the document following the root element must be well-formed.

これを修正するにはどうすればよいですか?

変更されていないデフォルトの xml は次のとおりです。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sohamchowdhury.ferric"
    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" >
    </application>

</manifest><manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sohamchowdhury.ferric"
    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=".AspectListActivity"
            android:label="@string/title_aspect_list" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

              <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:name=".AspectDetailActivity"
            android:label="@string/title_aspect_detail" >
            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value=".AspectListActivity" />
        </activity>
    </application>

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

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

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>
4

1 に答える 1

1

xml ファイル内に複数のマニフェスト タグがあります。コードから次の部分を削除します。

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sohamchowdhury.ferric"
    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" >
    </application>

</manifest>

そして、manifest.xml ファイルの最初の行に xml 宣言があることを確認してください。

<?xml version="1.0" encoding="utf-8"?>
于 2012-10-02T03:58:04.710 に答える