How to make an application go to a web version of a website on android -


i trying make application android (a browser) , want option users go web version of website (when there no option switch web version), how do that?

if using webview can play settings.

webview webview = new webview(this); webview.getsettings().setusewideviewport(true); webview.getsettings().setloadwithoverviewmode(true); 

edit: found that

webview.getsettings().setuseragent(1); 

should work in similiar fashion.


Comments