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 5930401
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T14:33:01+00:00 2026-05-22T14:33:01+00:00

i am not sure which is causing memory leaks so according to logCat i

  • 0

i am not sure which is causing memory leaks so according to logCat i have printed my code please help me what mistake am i doing here?

public  class EfficientAdapter extends BaseAdapter {
        private LayoutInflater mInflater;
       // private Context context;
        ArrayList<String> data;
        int pos;

        public EfficientAdapter(Context context,ArrayList<String> received) {

          mInflater = LayoutInflater.from(context);
          //this.context = context;
          data = received;
        }

        @Override
        public View getView(final int position, View convertView, ViewGroup parent) {
          ViewHolder holder;

          if(convertView == null)
          {
            convertView = mInflater.inflate(R.layout.list_cities, null);

            holder = new ViewHolder();
            holder.textLine = (TextView) convertView.findViewById(R.id.lblCity);

            convertView.setTag(holder);

          }else
          {
              holder = (ViewHolder)convertView.getTag();

          }

          convertView.setOnClickListener(new  android.view.View.OnClickListener() {

            @Override
            public void onClick(View v) {
                myInterface.search(getItem(position));
                SearchCity.this.dismiss();
            }
        });



          holder.textLine.setText(getItem(position));
          return convertView;
        }

        class ViewHolder {
          TextView textLine;

        }



        @Override
        public long getItemId(int position) {
            return 0;
        }

        @Override
        public int getCount() {
          return data.size();
        }

        @Override
        public String getItem(int position) {
          return data.get(position);
        }



      }

Stacktrace:

05-18 19:08:57.682: ERROR/WindowManager(314): Activity com.FindMe.DisplayAtms has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@4501cdf0 that was originally added here
05-18 19:08:57.682: ERROR/WindowManager(314): android.view.WindowLeaked: Activity com.FindMe.DisplayAtms has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@4501cdf0 that was originally added here
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.view.ViewRoot.<init>(ViewRoot.java:247)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:148)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.view.Window$LocalWindowManager.addView(Window.java:424)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.app.Dialog.show(Dialog.java:241)
05-18 19:08:57.682: ERROR/WindowManager(314):     at com.FindMe.DisplayAtms$1.run(DisplayAtms.java:269)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.app.Activity.runOnUiThread(Activity.java:3707)
05-18 19:08:57.682: ERROR/WindowManager(314):     at com.FindMe.DisplayAtms$AsycLoaderFromDbAndMapInjector.onPreExecute(DisplayAtms.java:880)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.os.AsyncTask.execute(AsyncTask.java:391)
05-18 19:08:57.682: ERROR/WindowManager(314):     at com.FindMe.DisplayAtms.LoadFunction(DisplayAtms.java:145)
05-18 19:08:57.682: ERROR/WindowManager(314):     at com.FindMe.DisplayAtms$7.search(DisplayAtms.java:513)
05-18 19:08:57.682: ERROR/WindowManager(314):     at com.FindMe.SearchCity$EfficientAdapter$1.onClick(SearchCity.java:152)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.view.View.performClick(View.java:2408)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.view.View$PerformClick.run(View.java:8816)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.os.Handler.handleCallback(Handler.java:587)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.os.Handler.dispatchMessage(Handler.java:92)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.os.Looper.loop(Looper.java:123)
05-18 19:08:57.682: ERROR/WindowManager(314):     at android.app.ActivityThread.main(ActivityThread.java:4627)
05-18 19:08:57.682: ERROR/WindowManager(314):     at java.lang.reflect.Method.invokeNative(Native Method)
05-18 19:08:57.682: ERROR/WindowManager(314):     at java.lang.reflect.Method.invoke(Method.java:521)
05-18 19:08:57.682: ERROR/WindowManager(314):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
05-18 19:08:57.682: ERROR/WindowManager(314):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
05-18 19:08:57.682: ERROR/WindowManager(314):     at dalvik.system.NativeStart.main(Native Method)

AsyncTask:

public class Asyctast extends AsyncTask<Void, Object, Void>
{

 private ProgressDialog dialog = new ProgressDialog(DisplayAtms.this);

   @Override
    protected void onPreExecute() {
        super.onPreExecute();
        runOnUiThread(showProgress);
    }


   @Override
    protected void onProgressUpdate(final Object... args) {
        super.onProgressUpdate(args);
        if ((Boolean) args[0]) {
            Toast.makeText(DisplayAtms.this, args[1].toString(),
                    Toast.LENGTH_LONG).show();
        }
    }

   @Override
    protected Void doInBackground(Void... arg0) {
         Log.d("Asynctask", ""+arg0);  


            publishProgress(true,"sd sdfsdf");


            return null;

    }

@Override
protected void onPostExecute(Boolean result) {
    runOnUiThread(hideProgress);
    }

}


Runnable showProgress = new Runnable() {

        @Override
        public void run() {
            pd = new ProgressDialog(DisplayAtms.this);
            pd = registerDialog(pd);
            pd.show();
        }
};  


Runnable hideProgress = new Runnable() {

        @Override
        public void run() {
            if(pd != null)
            pd.hide();
        }
};
  • 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-22T14:33:02+00:00Added an answer on May 22, 2026 at 2:33 pm

    AsyncTask.onPostExecute runs in UI thread, there is no need for something like that:

    Runnable showProgress = new Runnable() {
    
        @Override
        public void run() {
            pd = new ProgressDialog(DisplayAtms.this); //here is the leak
            pd = registerDialog(pd);
            pd.show();
    
        }
    };  
    

    Try this:

    @Override
    protected void onPreExecute() {
        pd.show();
    }
    
    @Override 
    protected void onPostExecute(Boolean result) {
        pd.dismiss();
    }
    

    You can use Handler too:
    Here is tutorial for handler

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

Sidebar

Related Questions

I have a piece of fortran code, and I am not sure which standard
I have checked the source codes of ASIHTTPRequest and could not make sure which
I'm not sure which is these is appropriate for my current application. I need
I'm using Oracle SQL Developer to query an Oracle DB (not sure which version
I'm implementing an SOA at a large company, and I'm not sure which web
I am looking to use quartz to schedule emails, but I'm not sure which
There are several ways to do this, but I'm not sure which one of
I'm new to the world of XML. I'm not sure which way to build
We are designing a Flash-based language course, and I am not sure which architecture
I am fairly new to MVC but not sure exactly which Redirect... replaces the

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.