개발자의 끄적끄적

[android/ios] android allow zoom in webview example / 안드로이드 웹뷰 내 페이지 확대 축소 설정 방법 본문

개발/android & ios

[android/ios] android allow zoom in webview example / 안드로이드 웹뷰 내 페이지 확대 축소 설정 방법

효벨 2021. 10. 10. 02:00
728x90
반응형

[android/ios] android allow zoom in webview example / 안드로이드 웹뷰 내 페이지 확대 축소 설정 방법

 

 

안드로이드에서

 

웹뷰를 사용하다보면

 

웹뷰 내 페이지를 확대 혹은 축소가 가능하게

 

설정해야 하는 경우가 있습니다.

 

그럴때는

 

아래와 같이 

 

webview 객체에 WebSettings 설정을 추가하시면 됩니다!

 

WebSettings setView = m_webView.getSettings();

setView.setBuiltInZoomControls(true);
setView.setSupportZoom(true);

 

참고들 하세요

 

반응형
Comments