Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

zoom buttons in android's web browser

Tags:

android

web

The web-site I'm working on is specially designed for Android. The user will not get benefit from Android build-in zoom buttons. On the contrary they make a mess. How can I switch them off?

like image 891
Vitali Kotik Avatar asked Feb 25 '09 18:02

Vitali Kotik


People also ask

How do I zoom out in Webview android?

webview. getSettings(). setLoadWithOverviewMode(true); This will cause the webview to be zoomed out initially.

How do I zoom in on a Web page Chrome?

By default, Chrome sets the zoom level to 100%. To manually adjust the settings, use the Ctrl key and “+” or “-” combos to increase or decrease the page magnification. If you are using a mouse, you can hold down the keyboard Ctrl key and use the mouse wheel to zoom in or out.


1 Answers

the following code casts magic

<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0"/>
like image 57
Vitali Kotik Avatar answered Oct 16 '22 16:10

Vitali Kotik