Hi dersharky-6168,
Welcome to our Microsoft Q&A platform!
Here is a workaround you can try.
Since it can work normally after clicking the Home button, we can override "OnBackButtonPressed" and use code to simulate pressing the Home button.
Create a interface named "ISendToBackService".
public interface ISendToBackService
{
void SendToBack();
}
Implement the method "SendToBack".
[assembly: Dependency(typeof(SendToBackService))]
namespace wifitimertest.Droid
{
class SendToBackService : ISendToBackService
{
public void SendToBack()
{
var activity = (Activity)Forms.Context;
activity.MoveTaskToBack(true);
}
}
}
Last, override the method "OnBackButtonPressed".
protected override bool OnBackButtonPressed()
{
DependencyService.Get<ISendToBackService>().SendToBack();
return true;
}
Rgerads,
Kyle
If the response is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.