私は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>
エラーはコードの最初の行に表示されています。助けてください。