tbuckley / brakes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Enable zoom

tbuckley opened this issue · comments

Right now the webview doesn't support pinch-to-zoom.

what's required to make zoom work? I've been annoyed by this a few times in the past week.

Same. I thought WebSettings.setSupportZoom(true) was enough [1], but apparently not.

[1] https://github.com/tbuckley/brakes/blob/master/app/src/main/java/com/example/tbuckley/brakes/WebViewActivity.java#L81

I believe I also need to include:
WebSettings.setBuiltInZoomControls(true);

Submitted this fix.