'WebView' 태그의 글 목록 — SH's Devlog

WebView

Android/Basic

[Android] WebView 속성 정리

WebView Settings 속성 webView.apply { webChromeClient = WebChromeClient() // 크롬환경에 맞는 세팅을 해줌. 특히, 알람등을 받기위해서는 꼭 선언해주어야함 (alert같은 경우) settings.apply { javaScriptEnabled = true javaScriptCanOpenWindowsAutomatically = false // window.open() 동작 허용 loadsImagesAutomatically = true // 웹뷰에서 앱에 등록되어있는 이미지 리소스를 사용해야 할 경우 자동으로 로드 여부 cacheMode = WebSettings.LOAD_NO_CACHE // LOAD_NO_CACHE -> 캐시 사용 x 네트워크로만 호출,..

반응형
seunghwaan
'WebView' 태그의 글 목록