onStop

open fun onStop()

Call this method from the parent Activity/Fragment's corresponding method.

In your Activity/Fragment:


    protected void onStop() {
        super.onStop();
        if (mapControl != null) {
            mapControl.onStop();
        }
    }

See also

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