Android基础 - No Launcher activity found!

1.  No Launcher activity found!


今天启动Android App时, 出现以下错误:

[2013-06-02 22:55:50 - Demo1] No Launcher activity found!

[2013-06-02 22:55:50 - Demo1] The launch will only sync the application package on the device!


原因是: 在 AndroidManifest.xml没有加:

  1. <intent-filter>  
  2.    <category android:name="android.intent.category.LAUNCHER" />  
  3.    <action android:name="android.intent.action.MAIN" />  
  4. lt;/intent-filter>  


所以启动器找不到要启动的Activity。

posted @ 2014-08-15 14:34  mr.g.  阅读(217)  评论(0编辑  收藏  举报