Android to determine if the app is in the foreground

Source: Internet
Author: User

Logic is to get the running stack of the system, at the top of the stack is in the foreground app, and then compare the package name, the difference is that the app is in the background, conversely, it means the app is in the foreground.

/**     * App is in the background     *     * @param context     * @return true is false not */public    Static Boolean IsBackground (Context context) {        Activitymanager am = (activitymanager) context.getsystemservice (context.activity_service);        list<activitymanager.runningtaskinfo> tasks = am.getrunningtasks (1);        if (!tasks.isempty ()) {            ComponentName topactivity = tasks.get (0). topactivity;            Staticmethod.debugemsg (Topactivity.getpackagename () + ":" + context.getpackagename ());            if (!topactivity.getpackagename (). Equals (Context.getpackagename ())) {                return true;            }        }        return false;    }

  

Android to determine if the app is in the foreground

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.