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 have a webview which will load from file or from the web. I set the WebViewClient to the webview and i override function onPageFinished(WebView view, String url).

Everytime the webview loads and finished, it will go to the function onPageFinished no matter it loads from the file or from the web.

My question is, can i skip the onPageFinished (or any other function) in WebViewClient if it loads from the FILE, and still goes there if it loads from the WEB?

Thanks for your answer :D

share|improve this question

1 Answer

up vote 0 down vote accepted

I think the best way is to control execution of the onPageFinished() yourself. Check inside the method if url started from "file:///..." or "http://..."

share|improve this answer
why i don't think about that?? Thanks man! – kyuu Jun 26 '12 at 12:53

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.