Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a list of webviews and I need to know when the user changes the zoom level in one webview in order to apply the new zoom in other webviews.

Currently I added the OnZoomListener interface and I have onZoom(int i), but it's called only when zoom is changed from zoom controls and I need to detect zoom changes when user uses fingers to change zoom.

share|improve this question

1 Answer

up vote 1 down vote accepted

setLoadWithOverviewMode(boolean) loads the WebView completely zoomed out and setUseWideViewPort(boolean) makes the Webview have a normal viewport. So use these methods to evaluate.

http://developer.android.com/reference/android/webkit/WebSettings.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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