Android determines whether the current application is running on the foreground

Source: Internet
Author: User

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 permission: * <uses-permission android: name = "android. permission. GET_TASKS "/> */public class MainActivity extends Act Ivity {@ 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 =" + topActivityClassName); 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 <Running TaskInfo> 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 ;}}
<RelativeLayout xmlns: android = "http://schemas.android.com/apk/res/android" xmlns: tools = "http://schemas.android.com/tools" android: layout_width = "match_parent" android: layout_height = "match_parent"> <TextView android: layout_width = "wrap_content" android: layout_height = "wrap_content" android: text = "determine whether the current application is running on the foreground" android: layout_centerInParent = "true" android: textSize = "20sp"/> </RelativeLayout>

 

Related Article

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.