区分从主屏幕启动的 Activity 或从 App 启动的另一个 Activity

Differentiating between an Activity launch from home screen or from another activity from App(区分从主屏幕启动的 Activity 或从 App 启动的另一个 Activity)
本文介绍了区分从主屏幕启动的 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.MAINgetCategories() 将返回一个包含 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
appearance().setBackgroundImage Not Working On Custom Class(外观().setBackoundImage在自定义类上不起作用)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)