Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有任何方法isMainActivity()可以检测 Android 中的主/启动器活动?
isMainActivity()
你可以这样做:
Intent intent = getIntent(); String action = intent.getAction(); Set<String> categories = intent.getCategories();
然后,使用该信息,您可以检查您当前的活动是否是您的 MAIN/LAUNCHER 活动。