[Android] Webview 404 에러 처리
* URL 접근 도중 인터넷이 끊길경우 팝업창 활성 WebView.setWebViewClient(new WebViewClient() {public void onPageStarted(WebView view, String url, Bitmap favicon) {super.onPageStarted(view, url, favicon);} @Overridepublic void onReceivedError(WebView view, int errorCode,String description, String failingUrl) {super.onReceivedError(view, errorCode, description, failingUrl); switch (errorCode) {case ERROR_AUTHENTICAT..
2016. 1. 14.