我如何加载ipboard论坛的移动版本?我已经设法使用以下代码加载移动版本的博客,但它不能与ipboard一起使用。可能因为它正在使用移动设备的主题。
WebView web=(WebView) findViewById(R.id.forumview);
web.getSettings().setUserAgentString("Android");
web.loadUrl("http://blabla.com/forum");
答案 0 :(得分:0)
将此用作使用者字符串:Mozilla/5.0 (Linux; U; Android 2.2.1; en-us; Nexus One Build/FRG83) AppleWebKit/533.1 (KHTML, like Gecko) Version/4.0 Mobile Safari/533.1
Here您可以看到Chrome for Android useragent字符串及其生成方式。
手机ua:
Mozilla/5.0 (Linux; <Android Version>; <Build Tag etc.>)
AppleWebKit/<WebKit Rev> (KHTML, like Gecko) Chrome/<Chrome Rev> Mobile
Safari/<WebKit Rev>
Galaxy Nexus的一个例子:
Mozilla/5.0 (Linux; Android 4.0.4; Galaxy Nexus Build/IMM76B)
AppleWebKit/535.19 (KHTML, like Gecko) Chrome/18.0.1025.133 Mobile
Safari/535.19