Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6885999
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:42:16+00:00 2026-05-27T05:42:16+00:00

In my application I need to detect whether my application is going to background

  • 0

In my application I need to detect whether my application is going to background or is switching to another activity of the same application… I know that I have to use the onPause method… but how can I distinguish the two cases?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T05:42:17+00:00Added an answer on May 27, 2026 at 5:42 am
    private static boolean isApplicationGoingToBackground(final Context context) {
    
            ActivityManager am = (ActivityManager) context.getSystemService(Context.ACTIVITY_SERVICE);
            List<RunningTaskInfo> tasks = am.getRunningTasks(1);
            if (!tasks.isEmpty()) {
                ComponentName topActivity = tasks.get(0).topActivity;
                if (!topActivity.getPackageName().equals(context.getPackageName())) {
                    return true;
                }
            }
    
            return false;
        }
    

    UPDATE: getRunningTasks has been declared to not be guaranteed to be accurate.

    Call in onStop. onStop gets called after onStart of whatever takes over the screen – if its an activity in the same apk package then you’re not going into the background. This does require the GET_TASKS permission.

    Or bind to a service onStart & unbind onStop – the service will then be onDestroyed when all your activities are stopped (or track binds vs unbinds if you don’t want to rely on onDestroyed getting called – because it might not..).

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I need to detect whether my application is running within a virtualized OS instance
I need to know how I can detect the current application pool I am
I have two application that need to talk to each other. App1 needs to
In a .NET application I am writing, I need to detect whether a particular
We have a WPF application where we need to detect if the user is
I want to make application that will use GPS, as we know at first
I'm building an application that uses an UIScrollView. I need to detect when the
I'm going to develop app that will need to detect the caller number and
I need to detect when the mouse or keyboard activity is present. My application
I need to detect information about the Application Server my EJBs are running in.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.