为什么不在模拟器上运行应用程序在安装后在模拟器浏览屏幕上显示应用程序?

时间:2014-12-11 22:18:29

标签: java android eclipse android-emulator android-studio

我的应用程序在我的GenyMotion仿真器设备上运行并安装正常。然而,当我在模拟器上启动应用程序并按下后退按钮后,我在Android应用程序浏览屏幕上看不到该应用程序。这是我在应用程序浏览屏幕中看到的内容。 enter image description here

我知道这个应用已经安装,因为当我去设置时 - >应用程序,这是我看到的(Demo-App-) enter image description here

该应用程序是否无法在应用浏览屏幕上显示?当我使用eclipse(使用android插件)时,我没有遇到这个问题。 Android Studio 1.0中的某些设置存在问题吗?我喜欢快速启动应用程序并对其进行测试,而无需每次都从Android Studio运行它。

我试过寻找其他线程,但无法找到问题 该问题不能android app doesn't show on the emulator,因为我的应用安装得很好。

1 个答案:

答案 0 :(得分:0)

感谢Egor的评论,当我仔细查看我的Android Manifest时,我看到的是

 <intent-filter>
            <action android:name="android.intent.action.MAIN"
                android:category="android.intent.category.LAUNCHER"
                />
       </intent-filter>

类别应该是它自己的标记,即

<intent-filter>
        <action android:name="android.intent.action.MAIN" />

        <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>