0

我在 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 位。

4

2 回答 2

0

如果我遇到过这样的问题,我会在我的项目上执行 adb uninstall 并重新安装它。

尝试这个

adb uninstall kokas.exercise.xml.ReadingXMLActivity

然后通过eclipse重新安装应用程序。

另外,您是否肯定模拟器的版本更新或等于应用程序正在使用的版本?

于 2012-06-13T07:46:38.277 回答
0

根据您的日志,您的应用程序仍未成功启动..

Waiting for HOME ('android.process.acore') to be launched

如果您的应用程序包名称在运行过程中退出,您可以在“设备”选项卡下的 DDMS 中确认这一点?.....

如在此链接中

如果可能的话,把它放在清单中

在应用程序标签 android:debuggable="true"

于 2012-06-13T07:35:36.673 回答