This handler class shocould be static or leaks ....

Source: Internet
Author: User

Handler, as the internal class of the activity, may cause memory leakage. How to solve the problem is as follows:

Issue: ensures that handler classes do not hold on to a reference to an outer class

In Android, Handler classes shoshould be static or leaks might occur. Messages enqueued on the application thread's messagequeue also retain their target
Handler. if the handler is an inner class, its outer class will be retained as well. to avoid leaking the outer class, declare the handler as a static nested class with a weakreference to its outer class.

The general translation is as follows:

The handler class should be of the static type, otherwise it may cause leakage. Messages queued in the program Message Queue maintain the application of the target handler class. If handler is an internal class, it also keeps its external class references. To avoid leaking this external class, Handler should be declared as a static nested class, and weak applications of external class should be used.

Example:

static class MyHandler extends Handler {                WeakReference<PopupActivity> mActivity;                MyHandler(PopupActivity activity) {                        mActivity = new WeakReference<PopupActivity>(activity);                }                @Override                public void handleMessage(Message msg) {                        PopupActivity theActivity = mActivity.get();                        switch (msg.what) {                        case 0:                                theActivity.popPlay.setChecked(true);                                break;                        }                }        };        MyHandler ttsHandler = new MyHandler(this);        private Cursor mCursor;        private void test() {                ttsHandler.sendEmptyMessage(0);        }
}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.