您的位置:首页 > 移动开发 > Android开发

Android No Launcher activity found!

2015-12-08 19:24 363 查看

No Launcher activity found!

The launch will only sync the application package on the device!

在 AndroidManifest.xml没有加:
<intent-filter>

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

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

</intent-filter>



android.intent.action.MAIN
决定应用程序最先启动的Activity

android.intent.category.LAUNCHER
决定应用程序是否显示在程序列表里
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: