我在 Eclipse 中有 3 个项目,但我不明白为什么 Android 模拟器没有显示第三个应用程序。
当我运行它时,我在控制台窗口中看到以下内容:
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 位。