2016. 8. 10. 18:02
Programming/Android
운영체제 : Windows 8.1 64bit 개발툴 : Android Studio 1.5 SDK Version : Min 19, Max 24 작성날짜 : 2016-08-10 |
참고 : [코덕후]망블로그 - [웹뷰] webview 멀티터치, 확대 축소, 줌, zoom
WebView 멀티터치, 확대 축소, 줌 기능 추가
WebView.xml
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true"
/>
WebView.java
mWebview.getSettings().setBuiltInZoomControls(true);
mWebview.getSettings().setSupportZoom(true);
'Programming > Android' 카테고리의 다른 글
[Android]strings.xml 에서 특수문자 사용하기 (0) | 2016.08.10 |
---|---|
[Android] ListView 스크롤 이벤트 및 데이터 추가하기 (0) | 2016.08.05 |
[Android] 메모리 최적화 (0) | 2016.07.18 |
[Android] 이미지 용량 줄이기 (0) | 2016.07.18 |
[Android] 시스템 설정으로 이동하기 (0) | 2016.07.13 |