반응형
[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 는 웹뷰의 객체 입니다.
반응형
'IT > Android' 카테고리의 다른 글
[Android] 안드로이드 keystore 생성, 위치, 정보 확인 (0) | 2023.07.24 |
---|---|
Android(안드로이드) 생명주기 (0) | 2017.12.14 |