作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我正在编写一个简单的Android程序,并且没有出现这些错误,我不知道它们是什么。我的程序是正确的,但显示不输出。我认为是因为这两行:
[2005-01-06 19:56:38 - my_Android] No Launcher activity found!
[2005-01-06 19:56:38 - my_Android] The launch will only sync the application package on the device!
最佳答案
这是来自 AndroidManifest.xml 的示例。您需要在 Intent 过滤器中为要在启动时启动的 Activity 指定 MAIN 和 LAUNCHER
<application android:label="@string/app_name" android:icon="@drawable/icon">
<activity android:name="ExampleActivity"
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>
关于android - "No Launcher activity found!"是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4801371/
我是一名优秀的程序员,十分优秀!