onResume

open fun onResume()

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

In your Activity/Fragment:


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

See also

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