尽管已在 manifest.xml 中声明,但未找到启动器活动
在我的应用程序中,我在manifest.xml文件中定义了主要活动,如下所示:
<activity
android:name=".MainActivity"
android:label="@string/guide_activity" >
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
</activity>
当我从连接到真实设备或模拟器的eclipse运行项目时,我在控制台中收到以下消息: 未找到启动器活动
这可能是什么原因?
In my app I have the main activity defined in the manifest.xml file like this:
<activity
android:name=".MainActivity"
android:label="@string/guide_activity" >
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable"
android:resource="@xml/searchable"/>
</activity>
when I run the project from eclipse connected to a real device or an emulator I receive the following message in the console:
No Launcher activity found
what can be the reason of this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将意图过滤器分成两个单独的过滤器。如果你像这样混合它们,android将无法确定两者之一是启动器过滤器。
Split the intent-filter into two seperate ones. If you mix them like this, android won't determine that one of the two is the launcher filter.