开发者

How can I tell a (Android) WebView to start off at a custom scale?

开发者 https://www.devze.com 2023-01-04 04:05 出处:网络
I\'m trying to tell a WebView to scale the page down to a certain percent. I\'ve tried using setInitialScale() as that seems to be exactly what I want, but it seemed to have no effect.

I'm trying to tell a WebView to scale the page down to a certain percent. I've tried using setInitialScale() as that seems to be exactly what I want, but it seemed to have no effect.

Am I just missing s开发者_开发知识库omething obvious?

Thanks in advance!


I dont have the full code available, nor do i have eclipse at the moment but I remember you start with something like this:

final View zoom = mWebView.getZoomControls ( );
mContentView.addView ( zoom, ZOOM_PARAMS );
zoom.setVisibility ( View.GONE );

then you should be able to set the zoom.

You set the zoom by doing the following:

mWebView.getSettings ( ).setSupportZoom ( true );
mWebView.setInitialScale ( 25 );
0

精彩评论

暂无评论...
验证码 换一张
取 消