0

I have made an android app with webview, but the width is more than the phone. I want to have the website fullscreen, so you must not scroll left/right.

I can't see the whole page. How is this possible?

Preview: http://i.imgur.com/HW0INx3.png

Who can help me?

keyser
  • 18,349
  • 16
  • 58
  • 97
Marv
  • 33
  • 11

1 Answers1

0

Try

myWebView.getSettings().setUseWideViewPort(true);

see WebSettings

Tells the WebView to use a wide viewport. The default is false.

Ken Wolf
  • 22,706
  • 6
  • 59
  • 82
  • Try this: (http://stackoverflow.com/questions/3808532/how-to-set-the-initial-zoom-width-for-a-webview) – Ken Wolf Jun 03 '13 at 07:20