我需要在自己的Application类中找出Launcher活动,并检查它是否正在运行。我该怎么办?
答案 0 :(得分:2)
如果我理解你的话,你就可以在申请的清单文件中找到它。
查找具有如下所示的intent-filter标记的活动:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
这是你的活动。