Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 자바스크립트
- jquery
- 리눅스
- Eclipse
- 공모주 청약
- 오라클
- php
- css
- linux
- 맥
- 코드이그나이터
- Stock ipo
- 공모주
- 주식 청약
- 제이쿼리
- 주식 청약 일정
- java
- JavaScript
- Oracle
- Stock
- 자바
- SQL
- 주식
- IPO
- MYSQL
- 공모주 청약 일정
- codeigniter
- 6월 공모주 청약 일정
- 7월 공모주 청약 일정
- html
Archives
- Today
- Total
개발자의 끄적끄적
[android/ios] android allow zoom in webview example / 안드로이드 웹뷰 내 페이지 확대 축소 설정 방법 본문
개발/android & ios
[android/ios] android allow zoom in webview example / 안드로이드 웹뷰 내 페이지 확대 축소 설정 방법
효벨 2021. 10. 10. 02:00728x90
반응형
[android/ios] android allow zoom in webview example / 안드로이드 웹뷰 내 페이지 확대 축소 설정 방법
안드로이드에서
웹뷰를 사용하다보면
웹뷰 내 페이지를 확대 혹은 축소가 가능하게
설정해야 하는 경우가 있습니다.
그럴때는
아래와 같이
webview 객체에 WebSettings 설정을 추가하시면 됩니다!
WebSettings setView = m_webView.getSettings();
setView.setBuiltInZoomControls(true);
setView.setSupportZoom(true);
참고들 하세요
반응형
'개발 > android & ios' 카테고리의 다른 글
[android/ios] android kotlin night mode example / 안드로이드 코틀린 나이트 모드 적용방법 (0) | 2022.07.07 |
---|---|
[android] 안드로이드 첨부파일 다운로드 시 .bin 변환되는 현상 (0) | 2021.01.10 |
[android/ios] iphone UIWebView Safari 새창 띄우는 방법 (0) | 2020.12.31 |
[ios/safari] 사파리 브라우저 다운로드 자동실행 막기 (0) | 2020.12.27 |
[android/ios] 안드로이드 뒤로가기 제거방법 (0) | 2020.11.26 |
Comments