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
- XML Opacity
- 여러 개
- Chat GPT
- Linux 패키지 관리자
- InvalidTestClassError
- php
- MySQL
- Github 등록
- docker에서 mysql 실행
- mac 패키지 관리자
- sourceSet
- git cannot identify version of git executable
- AWS
- Location Permission
- nextFocusDown
- 챗지피티
- 안드로이드 자동으로 포커싱
- Execution failed for task ':test'.
- codeigniter
- 다음으로 이동
- 5회 인증
- git
- Github Token
- TextView 일부분
- PHP Storm
- Android Studio
- 챗GPT
- 팝업 바깥 레이어
- Android Flavor
- junit
Archives
- Today
- Total
128june
[Android Studio] Webview size 맞추기 본문
반응형
출처
https://devvkkid.tistory.com/97
http://blog.daum.net/creazier/15309990
webview = (WebView) findViewById(R.id.webview01);
// 화면 비율
// wide viewport를 사용하도록 설정
webview.getSettings().setUseWideViewPort(true);
// 컨텐츠가 웹뷰보다 클 경우 스크린 크기에 맞게 조정
webview.getSettings().setLoadWithOverviewMode(true);
//zoom 허용
webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().setSupportZoom(true);
webview.setBackgroundColor(0); //배경색
webview.setHorizontalScrollBarEnabled(false); //가로 스크롤
webview.setVerticalScrollBarEnabled(false); //세로 스크롤
webView.setScrollBarStyle(WebView.SCROLLBARS_OUTSIDE_OVERLAY); // 스크롤 노출 타입
webView.setScrollbarFadingEnabled(true); // 스크롤 페이딩 처리 여부
//캐시파일 사용 금지(운영중엔 주석처리 할 것)
webview.getSettings().setCacheMode(WebSettings.LOAD_NO_CACHE);
//zoom 허용
webview.getSettings().setBuiltInZoomControls(true);
webview.getSettings().setSupportZoom(true);
//웹플러그인 허용
webview.getSettings().setPluginsEnabled(true);
//javascript의 window.open 허용
webview.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
//javascript 허용
webview.getSettings().setJavaScriptEnabled(true);
//스크립트 확장
webview.addJavascriptInterface(new AndroidBridge(), "HybridApp");
//meta태그의 viewport사용 가능
webview.getSettings().setUseWideViewPort(true);
webview.getSettings().setloadwithoverviewmode(true);
반응형
'Android Studio' 카테고리의 다른 글
[Android Studio] 둥근 도형 만들기 ( Shape Drawable ) (0) | 2020.07.29 |
---|---|
[Android Studio] Toast 활용 ( 간단하게 정리 ) (0) | 2020.07.28 |
[Android Studio] GridView 사용 예제 - 10분 간격의 시간 선택하기 (0) | 2020.07.25 |
[Android Studio] ScrollView 스크롤바 감추기 (0) | 2020.07.23 |
[Android Studio] editText 키보드에서 엔터 이벤트 처리하기 (0) | 2020.07.21 |
Comments