English 中文(简体)
导致记忆变幻的ListAdapter?
原标题:RunonUiThread() or CustomListAdapter causing Memory Leaks?

i 不能确定哪些是造成记忆泄露的,因此根据记录 页: 1

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();
        }
};
最佳回答

AsyncTask.onPostExecute 没有必要做这样的事情:

Runnable showProgress = new Runnable() {

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

    }
};  

为此:

@Override
protected void onPreExecute() {
    pd.show();
}

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

You can use Handler too:
Here is tutorial for handler

问题回答

暂无回答




相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签