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

  • SEARCH
  • Home
  • 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 8027821
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T23:55:45+00:00 2026-06-04T23:55:45+00:00

To clear all background activities I did the following: I kept a static array

  • 0

To clear all background activities I did the following:

I kept a static array list, and whenever I used to go from one activity to another, in the onCreate() method of new activity, I added the object of current activity into that list like this:

SomeClass.addActivity(CurrentActivity.this);

I added the above statement in each activity.

The addActivity():

public void addActivity(final Activity activity) {
            activityList.add(activity);
        }

And when I wanted to clear the stack, I called:

public boolean clearStack() {
        for (Activity activity : activityList) {
            activity.finish();
        }
        activityList.clear();
        return (activityList.isEmpty());
    }

In this way, I cleared my activity stack.

But it produced a memory leak. It’s not the right way to do that. It’s not ok to hold references to activities. Can you guys explain me why and how exactly memory leak occurred in this case?

I used MAT for eclipse to find this memory leak in my app.

Any help would greatly be appreciated.

  • 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-06-04T23:55:49+00:00Added an answer on June 4, 2026 at 11:55 pm

    Holding references to activities outside their context (when they are in background or “closed”/finished) causes memory to leak – the Android operating system would like to clear from memory “old” activities when it decides it’s the time to do so (You can’t control it manually).

    In that case – the garbage collector would try to free the activity / activities from memory, but because something (your array of references to activities) is holding a reference to it – it can’t be garbage collected, so it can’t free it from memory- and that’s a sample of a memory leak.

    This document describes how to avoid memory leaks:

    http://android-developers.blogspot.co.uk/2009/01/avoiding-memory-leaks.html

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

Sidebar

Related Questions

If I create a cell array using: clear all data = {rand(1,5),rand(1,4),rand(1,4),rand(1,6)}; a =
Currently I do the to following clear all processes running on port lsof -i
I'm wondering if anyone knows of a script to clear all the properties from
I developed one android app which is having sets of activities and one background
I have a few iFrames that all use a single background image. Whenever I
I need to clear all APC cache entries when I deploy a new version
how do i clear all elements in an arraylist?
I would like to clear all radio buttons in a group if I right
How can I clear all textboxes / uncheck checkboxes in my asp.net page without
there are clear, clear all buttons on richfaces fileUpload component. <rich:fileUpload id=quoteFile tabindex=10 listHeight=80

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.