there is a way to activate a control WebView Desktop mode and not Mobile mode?
You can try adding a viewport meta tag with a "desktop" width to your , like:
or
Try this in order to set your user agent:~
webView.SetWebViewClient (new MyWebViewClient());
// ...
public class MyWebViewClient : WebViewClient
{
public override bool ShouldOverrideUrlLoading(WebView view, string url)
{
view.Settings.UserAgentString = "your-user-agent-here";
view.LoadUrl(url);
return true;
}
}