Finding the Foreground Activity
----------------------------------------
if you want to which activity is running in the foreground
write this code
ActivityManager am = (ActivityManager)getSystemService(ACTIVITY_SERVICE);
List< ActivityManager.RunningTaskInfo > taskInfo = am.getRunningTasks(1);
taskInfo.get(0).topActivity.getClassName();
and add below permission in your manifest file
<uses-permission android:name="android.permission.GET_TASKS" />
----------------------------------------
if you want to which activity is running in the foreground
write this code
ActivityManager am = (ActivityManager)getSystemService(ACTIVITY_SERVICE);
List< ActivityManager.RunningTaskInfo > taskInfo = am.getRunningTasks(1);
taskInfo.get(0).topActivity.getClassName();
and add below permission in your manifest file
<uses-permission android:name="android.permission.GET_TASKS" />
No comments:
Post a Comment