Frank-Zhu / PullZoomView

An Android custom ListView and ScrollView with pull to zoom-in.
Apache License 2.0
2.32k stars 623 forks source link

Pull to zoom on WebView #8

Closed sergiiz closed 9 years ago

sergiiz commented 9 years ago

Hi, thanks for the great library! Now I'm trying to apply the same effect on WebView - to zoom in it content on pull gesture. But it seems that if I'm just replacing ImageView with WebView - scale logic doesn't work at all, it just showing the bottom (hidden) part of webpage content. Any ideas please?

Frank-Zhu commented 9 years ago

@sergiiz You are going to nest webview to ScrollView? You can try Fixed web page size, the page length to prevent excessive scrolling.I have no good advice!

sergiiz commented 9 years ago

@Frank-Zhu thanks, yes, WebView should be nested to the ScrollView. Yes, I know, it sounds like a bad design, but for now it sounds like the only possible approach for my case.