我的 Android 应用程序未显示在应用程序的主列表中。我必须做什么?

发布于 2024-09-17 06:23:41 字数 196 浏览 4 评论 0原文

我是 Android 初学者。我想在模拟器上运行我的第一个应用程序。我用的是日食。

我不知道发生了什么事。我安装了我的apk。我在清单文件中“注册”我的活动,但在应用程序列表中看不到它。当我打开管理应用程序设置时,它会显示我的 apk 已安装。我到处寻找有关它的信息。

即使在Android开发的常见问题解答中也有关于但我做了所有这些事情的帖子。

I'm beginner of Android. I want to run my first application on emulator. I use eclipse.

I don't know what's happen. I installed my apk. I "register" my acitivity in manifest file, but I can't see it in list of application. When I open manage application setting it's written that my apk is installed. I searched about it everywhere.

Even in faq of Android Development there is post about but I did all this things.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

荒人说梦 2024-09-24 06:23:41

基础页面:

示例中的第一个过滤器 -
动作的组合
“android.intent.action.MAIN”和
类别
android.intent.category.LAUNCHER” —
是一种常见的。它标志着活动
作为一个应该被代表的人
应用程序启动器、屏幕
列出用户可以启动的应用程序
在设备上。换句话说,
活动是入口点
应用程序,第一个用户
当他们选择时会看到
启动器中的应用程序。

因此,要将您的应用程序放入应用程序启动器中,请确保您在清单中设置了android.intent.category.LAUNCHER

From the fundamentals page:

The first filter in the example — the
combination of the action
"android.intent.action.MAIN" and the
category
"android.intent.category.LAUNCHER" —
is a common one. It marks the activity
as one that should be represented in
the application launcher, the screen
listing applications users can launch
on the device. In other words, the
activity is the entry point for the
application, the initial one users
would see when they choose the
application in the launcher.

So to have your application in the application launcher, make sure you have android.intent.category.LAUNCHER set in the Manifest.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文