2
I need to check if the webview is loaded in order to execute a javascript function that is found in the webview, but I don’t know how to check if the webview is already loaded 100%.
follows the code:
WebView webView = (WebView)findViewById(R.id.webView);
webView.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(new webViewClient());
webView.loadUrl("http://meusite.com");
Thank you Vitor.
– Gustavo Paes