Popularity
7.7
Stable
Activity
0.0
Declining
1,544
80
296

Code Quality Rank: L5
Programming language: Java
License: MIT License
Tags: Other    
Latest version: v1.2

WeakHandler alternatives and similar packages

Based on the "Other" category.
Alternatively, view WeakHandler alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of WeakHandler or a related project?

Add another 'Other' Package

README

Android Weak Handler

Memory safer implementation of android.os.Handler

Problem

Original implementation of Handler always keeps hard reference to handler in queue of execution. Any object in Message or Runnable posted to android.os.Handler will be hard referenced for some time. If you create anonymous Runnable and call to postDelayed with large timeout, that Runnable will be held in memory until timeout passes. Even if your Runnable seems small, it indirectly references owner class, which is usually something as big as Activity or Fragment.

You can read more on our blog post.

Solution

WeakHandler is trickier than android.os.Handler , it will keep WeakReferences to runnables and messages, and GC could collect them once WeakHandler instance is not referenced any more.

[Screenshot](WeakHandler.png)

Usage

Add JitPack repository to your build.gradle:

repositories {
    maven { url 'https://jitpack.io' }
}

dependencies {
    implementation 'com.github.badoo:android-weak-handler:1.2'
}

Use WeakHandler as you normally would use Handler

import com.badoo.mobile.util.WeakHandler;

public class ExampleActivity extends Activity {

    private WeakHandler handler; // We still need at least one hard reference to WeakHandler

    protected void onCreate(Bundle savedInstanceState) {
        handler = new WeakHandler();
        ...
    }

    private void onClick(View view) {
        handler.postDelayed(new Runnable() {
            view.setVisibility(View.INVISIBLE);
        }, 5000);
    }
}

Credits

Weak Handler is brought to you by Badoo Trading Limited and it is released under the MIT License.

Created by Dmytro Voronkevych

Blog

Read more on our tech blog or explore our other open source projects


*Note that all licence references and agreements mentioned in the WeakHandler README section above are relevant to that project's source code only.