アプリケーションをコーディングしました。コードはすべて問題ありません。ただし、エミュレータでは実行されません。次のようなエラーが発生します。
D:\ Android Workspace \ DbTuts \ AndroidManifest.xmlのパーサー例外:要素タイプ "application"は、一致する終了タグ""で終了する必要があります。
実行時にコマンド出力がありません:'am start -n com.android.tuts / com.android.tuts.MyActivity -a android.intent.action.MAIN -candroid.intent.category.LAUNCHER'デバイスエミュレーター-5556
マニフェストコードは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.tuts"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" />
<application android:name=".ApplicationContextProvider"
android:label="@string/app_name"></application>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MyActivity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>