diff --git a/src/Controls/src/Core/Platform/AlertManager/AlertManager.Android.cs b/src/Controls/src/Core/Platform/AlertManager/AlertManager.Android.cs index fb5456e4a1cd..62016fae08f8 100644 --- a/src/Controls/src/Core/Platform/AlertManager/AlertManager.Android.cs +++ b/src/Controls/src/Core/Platform/AlertManager/AlertManager.Android.cs @@ -94,6 +94,12 @@ public void ResetBusyCount() void OnPageBusy(IView sender, bool enabled) { + // Verify that the page making the request is part of this activity + if (!PageIsInThisContext(sender)) + { + return; + } + _busyCount = Math.Max(0, enabled ? _busyCount + 1 : _busyCount - 1); UpdateProgressBarVisibility(_busyCount > 0);