I am trying the following code but it does not open the page in the desired way I want. It opens the URL in a mobile type page even with this code. I want the page to open completely zoomed out. I mean I want to see the full page instead of scrolling it. here's the code
browser = (WebView) findViewById(R.id.browserview);
browser.getSettings().setJavaScriptEnabled(true);
browser.getSettings().setLoadWithOverviewMode(true);
browser.getSettings().setUseWideViewPort(true);
appreciating help. thanks