Differentiating between an Activity launch from home screen or from another activity from App(区分从主屏幕启动的 Activity 或从 App 启动的另一个 Activity)
问题描述
我需要知道一种通用方法来区分来自启动器的活动调用和来自我的应用程序内部的另一个活动的调用,或活动堆栈上的 BACK
I need to know a generic way to distinguish between a call of activity from launcher and a call from another activity from inside my app, or a BACK on the activity stack
有人吗?这困扰了我很长一段时间,我需要让它休息......
Anyone? this is bugging me for quite a while now and i need to put it to rest...
提前致谢JQCorreia
Thanks in advance JQCorreia
推荐答案
在你的Activity的onCreate中,调用getIntent()
.如果 Activity 从启动器(主屏幕)启动,则 getAction()
的值将是 android.intent.action.MAIN
和 getCategories()
将返回一个包含 android.intent.category.LAUNCHER 类别的集合.如果活动从其他地方开始,这些值可能是 null
.
In the onCreate of your Activity, call getIntent()
. If the Activity is started from the launcher (home screen) the values for getAction()
will be android.intent.action.MAIN
and the getCategories()
will return a set which will contain the android.intent.category.LAUNCHER category.
If the activity is started from elsewhere these values may be null
.
这篇关于区分从主屏幕启动的 Activity 或从 App 启动的另一个 Activity的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:区分从主屏幕启动的 Activity 或从 App 启动的另一个 Activity


基础教程推荐
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01