Android模拟器没有显示我的所有应用程序

时间:2012-06-13 07:28:27

标签: android emulation

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

2 个答案:

答案 0 :(得分:0)

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

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

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

,如此link

如果可能的话,将其放入清单

应用程序标签中的

android:debuggable =“true”

答案 1 :(得分:0)

如果我遇到这样的问题,我会对我的项目进行adb卸载并重新安装。

试试这个

adb uninstall kokas.exercise.xml.ReadingXMLActivity

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

另外,您是否肯定仿真器的版本是新版本或等于应用程序使用的版本?