ActivityManager (4) -- determines whether an application is running on the foreground

Source: Internet
Author: User

ActivityManager (4) -- determines whether an application is running on the foreground

MainActivity is as follows:

Package cn. testforeground; import java. util. list; import android. OS. bundle; import android. app. activity; import android. app. activityManager; import android. app. activityManager. runningTaskInfo; import android. content. componentName; import android. content. context;/*** Demo Description: * determines whether the current application is running on the foreground ** note permissions :*
 */Public class MainActivity extends Activity {@ Overrideprotected void onCreate (Bundle savedInstanceState) {super. onCreate (savedInstanceState); setContentView (R. layout. main); isRunningForeground ();} public boolean isRunningForeground () {String packageName = getPackageName (this); String topActivityClassName = getTopActivityName (this); System. out. println ("packageName =" + packageName + ", topActivityClassName =" + topAc TivityClassName); if (packageName! = Null & topActivityClassName! = Null & topActivityClassName. startsWith (packageName) {System. out. println ("---> isRunningForeGround"); return true;} else {System. out. println ("---> isRunningBackGround"); return false ;}} public String getTopActivityName (Context context) {String topActivityClassName = null; ActivityManager activityManager = (ActivityManager) (context. getSystemService (android. content. context. ACTIVITY_SERVICE); List
 
  
RunningTaskInfos = activityManager. getRunningTasks (1); if (runningTaskInfos! = Null) {ComponentName f = runningTaskInfos. get (0 ). topActivity; topActivityClassName = f. getClassName ();} return topActivityClassName;} public String getPackageName (Context context) {String packageName = context. getPackageName (); return packageName ;}}
 

Main. xml is as follows:

     
  
 


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.