When an App is iconified with the home button, then resumed, is there an event that notifies me so I can perform some specific operation?
I tried this:
void activeWindowStatusChanged() override
{
if (mainComponent == nullptr) return;
if (this->isActiveWindow())
mainComponent->DoRefresh();
}
But it only works in Windows after the app has been iconified and maximized again, or after the app gains focus. Doesn’t do anything under Android.
