IT/Android

[Android] 웹뷰 확대 축소 (줌, zoom)

바다, 2018. 2. 1. 16:56
반응형

[Android] 웹뷰 확대 축소 (줌, zoom)



안드로이드 웹뷰의 확대, 축소 기능입니다.


우선 화면을 그리는 xml에


<WebView

android:id="@+id/webview"

android:layout_width="match_parent"

android::layout_height="match_parent"

android:focusable="true"

android:focusableInTouchMode="true"

/>


를 해줍니다.




액티비티 클래스에 아래와 같이 옵션을 추가해주세요.


vw.getSettings().setBulitInZoomControls(true);

vw.getSettings().setSupportZoom(true);



vw 는 웹뷰의 객체 입니다.

반응형