Cannot get foreground activity name in Android Lollipop 5.0 only

前端 未结 7 2043
旧巷少年郎
旧巷少年郎 2020-12-02 16:02

I use the following code to get the activity name of the foreground app in the variable foregroundTaskPackageName. It works on all OS versions between 4.1 t

7条回答
  •  北海茫月
    2020-12-02 16:51

    You need to use the new UsageStatsManager and call its queryUsageStats method to get the history of activities launched. Please note that the user will be required to provide access to usage stat on the device settings at Security->Apps with usage access.

    Links:

    UsageStatsManager documentation

    queryUsageStats method documentation

提交回复
热议问题