Javascript injection into webview
问题 I know it exists a lot of questions about that but i don't understand why my following code does not work anymore Here is my code : private void init() { webview.setWebViewClient(new FormWebViewClient()); webview.postUrl(url, EncodingUtils.getBytes(data, "BASE64")); } private class FormWebViewClient extends WebViewClient { @Override public void onPageStarted(WebView view, String url, Bitmap favicon) { super.onPageStarted(view, url, favicon); // progressBar.setVisibility(View.VISIBLE); }