/// <summary> /// Overrides the harware backbutton on Android /// </summary> /// <returns></returns> protected override bool OnBackButtonPressed() { if (_webview.CanGoBack) { _webview.GoBack(); } return(true); }