I have tried the following to fit the webpage based on the device screen size.

mWebview.setInitialScale(30);

and then set the metadata viewport

<meta name="viewport" content="width=320, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; minimum-scale=1.0; user-scalable=0;"/>
<meta name="viewport" content="width=device-width, target-densityDpi=medium-dpi"/>

But nothing works, webpage is not fixed to the device screen size.

Can anyone tell me how to get this?

link|improve this question

33% accept rate
feedback

6 Answers

up vote 8 down vote accepted

You have to calculate the scale that you need to use manually, rather than setting to 30.

private int getScale(){
    Display display = ((WindowManager) getSystemService(Context.WINDOW_SERVICE)).getDefaultDisplay(); 
    int width = display.getWidth(); 
    Double val = new Double(width)/new Double(PIC_WIDTH);
    val = val * 100d;
    return val.intValue();
}

Then use

WebView web = new WebView(this);
web.setPadding(0, 0, 0, 0);
web.setInitialScale(getScale());
link|improve this answer
Thanks for your reply, u r right, it works. but I have different issue. I am not loading an image, loading the webpage in the webview, So how to find out the webpage width (PIC_WIDTH). – SWDeveloper Oct 13 '10 at 15:21
Ah, I missed that constant in there. Sorry about that. I am not sure how you can get the width of the actual webpage. – danh32 Oct 13 '10 at 18:59
What is PIC_WIDTH here ? – Paresh Mayani Jun 8 '11 at 8:09
@danh32 What is PIC_WIDTH here??? – Hades Feb 8 at 10:28
1  
PIC_WIDTH was a constant that I knew beforehand, since I was just displaying a single image from the assets folder. As I said above, I don't know how you can get the width of the actual webpage. – danh32 Feb 8 at 14:43
show 1 more comment
feedback

You can use this

    WebView browser = (WebView) findViewById(R.id.webview);
    browser.getSettings().setLoadWithOverviewMode(true);
    browser.getSettings().setUseWideViewPort(true);

this fixes size based on screen size.

link|improve this answer
Tnx,Its work for me. – Chirag Shah Jan 12 at 6:53
works for me too. – Tyler Long Feb 9 at 8:33
Great answer, thanks! – Aracem Feb 9 at 13:05
This feet the screen but does not allow you to make zoom in/out anymore. Could this issue bee improved?, I know it is possible on IOS. – AlexAndro Mar 20 at 11:27
1  
I have found. Just add: browser.getSettings().setBuiltInZoomControls(true); – AlexAndro Mar 20 at 11:36
feedback
int PIC_WIDTH= webView.getRight()-webView.getLeft();
link|improve this answer
feedback

This will help in adjusting the emulator according to the webpage:

WebView wb;
//CALL THIS METHOD
wb.setInitialScale(50);

You can set the intial scale in percentage as shown above.

link|improve this answer
feedback

Try with this HTML5 tips

http://www.html5rocks.com/en/mobile/mobifying.html

And with this if your Android Version is 2.1 or greater

  WebView.getSettings().setLayoutAlgorithm(LayoutAlgorithm.SINGLE_COLUMN);
link|improve this answer
feedback

Friends,

I found a lot of import and great informations from you. But, the only way works for me was this way:

webView = (WebView) findViewById(R.id.noticiasWebView);
webView.setInitialScale(1);
webView.getSettings().setJavaScriptEnabled(true);
webView.getSettings().setLoadWithOverviewMode(true);
webView.getSettings().setUseWideViewPort(true);
webView.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY);
webView.setScrollbarFadingEnabled(false);
webView.loadUrl("http://www.resource.com.br/");

I am working on Android 2.1 because of the kind of devices from the company. But I fixed my problem using the part of informations from each one.

Thanks you!

Kind Regards, Josmar Peixe

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.