onLowMemory

open fun onLowMemory()

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();
        }
    }

See also

<a href="https://developer.android.com/reference/android/app/Activity#onLowMemory()">Activity.onLowMemory()</a>