Android 应用程序可以检测它是如何启动的吗?

发布于 2024-10-17 15:12:16 字数 158 浏览 3 评论 0原文

Android 应用程序有办法检测它是如何启动的吗?是通过引导还是用户从应用程序列表启动应用程序?

当我的应用程序在启动时启动时,我根本不希望显示任何活动。当用户专门从应用程序列表中启动它时,只有那时我才希望显示主要活动。如果我可以检测启动是用户启动还是系统启动启动,我也许能够控制它。

Is there a way for Android application to detect how it is being launched? whether by a BOOT or by user launching the application from the application list?

When my application is launched on boot I don't want any activity to show at all. When the user specifically launches it from the application list, then and only then would I want the main activity to show. If I could detect whether the launch was a user launch or system boot launch I might be able to control this.

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

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

发布评论

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

评论(1

猫弦 2024-10-24 15:12:16

您正在寻找的是启动应用程序的意图。在 Android 项目的清单文件中,您可以指定哪些 Intent 将启动哪些 Activity。 Intent 的文档页面实际上对如何使用此功能进行了非常彻底的解释,包括示例代码和所有内容:

http://developer.android.com/reference/android/content/Intent.html

当用户从启动器中选择您的应用程序时将调用的 Intent 如下所示:

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

如果您想要当手机启动时要启动不同的 Activity(有一个意图过滤器值“android.intent.action.BOOT_COMPLETED”),您只需将不同的 IntentFilter 添加到清单中的 Activity 标记即可。

What you're looking for is the Intent that started the application. In the manifest file of your Android project you can specify which Intents will launch which Activities. The documentation page for Intent actually has a really thorough explanation of how to use this feature, with example code and everything:

http://developer.android.com/reference/android/content/Intent.html

The Intent that will be called when a user selects your application from a launcher will look like:

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

If you want a different Activity to launch when the phone boots (there's an intent filter value "android.intent.action.BOOT_COMPLETED"), you just add a different IntentFilter to the Activity's tag in the manifest.

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