Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/badoo/android-weak-handler
Memory safer implementation of android.os.Handler
https://github.com/badoo/android-weak-handler
Last synced: 5 days ago
JSON representation
Memory safer implementation of android.os.Handler
- Host: GitHub
- URL: https://github.com/badoo/android-weak-handler
- Owner: badoo
- License: mit
- Created: 2014-08-27T13:43:45.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-02-24T20:00:40.000Z (almost 3 years ago)
- Last Synced: 2024-08-16T14:34:48.790Z (4 months ago)
- Language: Java
- Size: 149 KB
- Stars: 1,546
- Watchers: 80
- Forks: 290
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-android - Weak handler - Memory safer implementation of android.os.Handler. (Libraries / Utility)
- awesome-android-libraries - android-weak-handler
- awesome-android - Weak handler - Memory safer implementation of android.os.Handler. (Libraries / Utility)
- awesome-android-cn - 官网
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](https://medium.com/bumble-tech/android-handler-memory-leaks-7291c5be6101).
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:
```groovy
repositories {
maven { url 'https://jitpack.io' }
}dependencies {
implementation 'com.github.badoo:android-weak-handler:1.3'
}
```Use WeakHandler as you normally would use Handler
```java
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](https://corp.badoo.com) and it is released under the [MIT License](https://opensource.org/licenses/MIT).## Blog
Read more on our [tech blog](http://techblog.badoo.com/) or explore our other [open source projects](https://github.com/badoo)