我需要在我的应用程序中显示上次访问的应用程序信息。我如何获得此信息?
最佳答案
//如何检测哪个是当前热门活动。
public boolean whatIsCurrentActivity()
{
ActivityManager am = (ActivityManager) mContext.getSystemService(mContext.ACTIVITY_SERVICE);
List ActivityManager.RunningTaskInfo taskInfo = am.getRunningTasks(1);
if(taskInfo != null ){
System.out.println("Top activity - Package name of the process is "+taskInfo.get(0).topActivity.getPackageName() );
}
关于android - 如何获得我的设备中安装了多少个应用程序以及名称或上次访问的信息?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8655477/