设置web视图以查看桌面网站,而不是移动网站 [英] Setting WebView to view Desktop Site and Not Mobile Site

查看:147
本文介绍了设置web视图以查看桌面网站,而不是移动网站的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我对堆栈溢出做了相当多的研究和大量谷歌的研究,但没有的,我觉得实际上是工作对我来说。我希望自己的网站查看手机网站的桌面版网站,而不是。我该怎么做呢?我希望它直接到桌面的网站。

 的WebView myWebView =(web视图)findViewById(R.id.webview);
    myWebView.loadUrl(http://www.apotter96.webs.com/);
}
 

解决方案

改变web视图的用户代理

 字符串newUA =富/; //根据需求改变UA
 

喜欢

 字符串newUA =Mozilla的/ 5.0(X11; U; Linux的i686的; EN-US; rv中:1.9.0.4)的Gecko / 20100101火狐/ 4.0;
 。mWebView.getSettings()setUserAgentString(newUA);
 

I've done quite a lot of research on Stack Overflow and a lot of Google research but nothing I find is actually working out for me. I want the site to view the desktop site instead of the mobile site. How do I do this? I want it to directly go to the Desktop site.

WebView myWebView = (WebView) findViewById(R.id.webview); 
    myWebView.loadUrl("http://www.apotter96.webs.com/");
}

解决方案

Change the user agent of webview

 String newUA="Foo/"; // Change this to desired UA

like

 String newUA= "Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.4) Gecko/20100101 Firefox/4.0";
 mWebView.getSettings().setUserAgentString(newUA);

这篇关于设置web视图以查看桌面网站,而不是移动网站的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆