Optimizing Memory for Android Apps
Developing an app which is memory and battery friendly is very rare. Memory is very limited for an app in android. One of the core reasons which makes memory very precious is due to different device specifications, various ways of writing a code. Memory leaks and usage are very visible to the users like scrolling, switching between apps, crashes etc., Let's get started! Here are some quick tips to optimize Memory: User memory efficient data structures such as SparseArray (https://developer.android.com/reference/android/util/SparseArray.html) [...]