본문 바로가기

빈 구멍 채우기

[Android][WebView] 앱과 WebVeiw 간 통신

https://developer.android.com/develop/ui/views/layout/webapps/webview

 

Build web apps in WebView  |  Android Developers

If you want to deliver a web application (or just a web page) as a part of a client application, you can do it using WebView. The WebView class is an extension of Android's View class that allows you to display web pages as a part of your activity layout.

developer.android.com

 

1) 자바스크립트 이용하기 > JavascriptInterface 이용하기

 

2) link 클릭 후 이벤트 오버라이드 > WebViewClient의 shouldOverrideUrlLoading() 오버라이드하기

 

3) 단말 백 키로 웹뷰 히스토리 전 화면 이동 > WebView의 onKeyDown() 오버라이드하기

 

https://developer.android.com/guide/webapps/webview?hl=ko

WebView.goBack() 으로 웹뷰 히스토리 중 이전으로 돌아간다.