on Low Memory
Call this method from the parent Activity/Fragment's corresponding method.
In your Activity/Fragment:
protected void onLowMemory() {
super.onLowMemory();
if (mapControl != null) {
mapControl.onLowMemory();
}
}
Content copied to clipboard
See also
<a href="https://developer. android. com/reference/android/app/Activity#on Low Memory()">Activity. on Low Memory()</a>