ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Performance Considerations for Memory leaks: An Android Cookbook Part 2

Amanda Hinchman
ProAndroidDev
Published in
6 min readOct 28, 2022

--

6. Statically-saved thread primitives within singletons → remove
7. Listeners + View members in Fragment → nullify in onDestroyView
8. Rx leaks -> return results to main thread + clear disposables

6. Statically-saved thread primitives within singletons → remove

A visual representation of runtime. The image shows MainActivity and SomeActivity running as steps 1 and 2, both of which hold reference to the same queue stored in tileMapThreadPoolExecutor in our singleton dependency. It also show a leak, since the queue holds on to the tasks after the work is complete.
A visual representation of Activities and continuous active Runnable in queue given the current memory leak.
Screenshot showing logging where tasks from MainActivity and the first instance of SecondActivity being retained at the second instantiation of SecondActivity.
Screenshot showing logging where tasks from MainActivity, SecondActivity, and SecondActivity. All tasks have been disposed of after running each, so we see three tasks retained in queue and run
A visual representation of user navigation in memory and properly disposing Runnable tasks within the ThreadPoolExecutor queue

7. Listeners + Views in Fragment → nullify references in Fragment::onDestroyView

Credit to P.Y. for tracking this memory leak

8. Rx leaks -> return results to main thread + clear disposables with lifecycle

Need more content on Android in-depth?

--

--

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Amanda Hinchman

Kotlin GDE, Android engineer & O'Reilly book author | Support my research on Patreon: patreon.com/AmandaHinchman

No responses yet

Write a response