0

私はdeveloper.android.comで行われたトレーニングを通じてAndroid開発を学んでおり、「別のアクティビティを開始する」まで行ってきました。コードを実行しようとすると、AndroidManifest.xmlで次のエラーが発生します。

エラー:XMLの解析中にエラーが発生しました:エンティティの先頭にないXMLまたはテキスト宣言

Eclipse IDEを使用していて、自分でラベルを作成する必要がなかったため、AndroidManifest.xmlの行を編集していないと思います。これが私のAndroidManifest.xmlです:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.myfirstapp"
android:versionCode="1"
android:versionName="1.0" >

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

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

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.example.myfirstapp.DisplayMessageActivity"
        android:label="@string/title_activity_display_message"
        android:parentActivityName="com.example.myfirstapp.MainActivity" >
        <meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.example.myfirstapp.MainActivity" />
    </activity>
</application>

</manifest>

エラーはコードの最初の行に表示されています。助けてください。

4

2 に答える 2

3

プロジェクトが更新されない適切にエラーが表示されるのはそのためです

日食のProject-->Clean場所で

次に、プロジェクトをクリーンアップしてビルドします。

于 2013-01-19T07:27:26.230 に答える
0

エラーはあなたのレイアウトファイルが原因である可能性があります

XMLですべてのタグを完成させる

このような

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="wrap_content"
              android:layout_height="wrap_content"
              android:orientation="vertical">

 <TextView android:id="@+id/text1"
     android:textSize="16sp"
     android:textStyle="bold"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"/>

 <TextView android:id="@+id/text2"
     android:textSize="16sp"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"/>
 </LinearLayout>
于 2013-01-19T07:30:06.520 に答える