Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to catch an error when invoking javascript from android's webview; if the javascript is missing I need to catch some event and do something else in android instead.

for instance, I have webview.loadUrl("javascript:doSomething");

the page is missing 'doSomething', so I can see the following error in logcat:

ReferenceError: Can't find variable: doSomething ...

I need to catch this error and handle it, for instance something like

public override void onJsErrorReceived(String errorDescription)
{
    if(errorDescription.contains("doSomething"))
       handleError();
}

I can't find any such event in webview, nor in the clients of webview (WebChromeClient and WebViewClient) to overridel.

Does anybody have an idea?

Thanks

share|improve this question

1 Answer

As per this question, the methods you need to over-ride are:

WebChromeClient.onConsoleMessage(String message, int lineNumber, String sourceID)

and

WebChromeClient.onConsoleMessage(ConsoleMessage cm),

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.