Activity has leaked window

Updated 23 September 2017

Save

The most common issue which leads your android application to crash with this log message:

Error: E/WindowManager: android.view.WindowLeaked: Activity com.example.android has leaked window

com.android.internal.policy.PhoneWindow$DecorView{c75fa80 V.E……

Let’s take an example here is request() method where we have requested to the server and showing a progress bar. Here mProgress is an instance of ProgressDialog and getResponse() is a method in which we get a response from the server if error(0) that mean we can start new activity for the user.

In above code, we are showing the progress bar to the user and started the new activity without dismissing progress which leaked window in this case.

Prevention:

onStop() method Activity cycle called when no longer activity visible there we can check either mProgress is null or not. If mProgress isn’t null that mean your activity leaked window so you can dismiss it onStop() method.

Example:

If you have any doubt comment below.

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


Be the first to comment.

Start a Project


    Message Sent!

    If you have more details or questions, you can reply to the received confirmation email.

    Back to Home