Eclipse に 3 つのプロジェクトがありますが、Android エミュレーターが 3 つ目のアプリケーションを表示しない理由がわかりません。
実行すると、コンソール ウィンドウに次のように表示されます。
Android Launch!
adb is running normally.
Performing kokas.exercise.xml.ReadingXMLActivity activity launch
Automatic Target Mode: launching new emulator with compatible AVD 'AVD2.33'
Launching a new emulator with Virtual Device 'AVD2.33'
New emulator found: emulator-5554
Waiting for HOME ('android.process.acore') to be launched...
XML マニフェスト :
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="kokas.exercise.xml"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".ReadingXMLActivity"
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>
他に確認することはありますか?私のマシンは Windows 7 64 ビットを実行しています。