I have WebView in my application in which some site is opened (always the same, it is my own page). Site has some JS code which loads some images from remote host.

I want to intercept requests to such images (by URL pattern) and give back my own content (i.e. another image), or leave request untouched depending on internal application logic.

Is there an ability to do that?

EDIT: The current state of question...

WebView has an ability to set a WebViewClient (as noted by Axarydax). WebViewClient have two useful methods

  • shouldOverrideUrlLoading
  • onLoadResource

shouldOverrideUrlLoading is able to intercept any url loading, if loading is triggered by page interaction (i.e. link on a page is clicked, WebView.loadURL("") isn't triggering this method). It is also able to cancel URL loading by returning false. This approach isn't usable, cause' it is not able to intercept loading of page resources (and images, what i need to intercept, is such a page resource).

onLoadResource is triggering every time that page resource (and images! thx to jessyjones) are loading, but where is no way to cancel taht. That makes this method not suitable for my task also.

link|improve this question

feedback

5 Answers

up vote 7 down vote accepted

It looks like API level 11 has support for what you need. See WebViewClient.shouldInterceptRequest().

link|improve this answer
feedback

Try this, I've used it in a personal wiki-like app:

webView.setWebViewClient(new WebViewClient() {
    @Override
    public boolean shouldOverrideUrlLoading(WebView view, String url) {
        if (url.startsWith("foo://")) {
            // magic
            return true;
        }
        return false;
    }
});
link|improve this answer
Ok, it is the way to intercept call (by the way, will it trigger if my page loads an image, not doing a full reload?), but how can i supply response for the intercepted call produced by my Java code? – Olegas Jan 26 '11 at 14:54
1  
you can use loadData() method of WebView to push some html into it. Usage: webView.loadData("<html>...</html>", "text/html", "utf-8"); – Axarydax Jan 28 '11 at 13:57
Not suitable. Static content loaded through loadData haven't access to additional content loading throug network. As a workaround loadData("javascript:....") can be used (to interact with some "client" code). This can be a good and suitable aproach if shouldOverrideUrlLoading is called for every page resource (content images exactly). But it didn't. – Olegas Jan 29 '11 at 10:29
What about if you use url.endsWith("jpg")? You just have to use it to jpeg, gif and png... Then, the code Azarydax provided should work, no? – gnclmorais Feb 1 '11 at 19:49
@MEGA shouldOverrideUrlLoading is NOT called for page resources (images are among them) – Olegas Feb 2 '11 at 6:18
feedback

As far as I know, shouldOverrideUrlLoading is not called for images but rather for hyperlinks... I think the appropriate method is

@Override public void onLoadResource(WebView view, String url)

This method is called for every resource (image, styleesheet, script) that's loaded by the webview, but since it's a void, I haven't found a way to change that url and replace it so that it loads a local resource ...

link|improve this answer
Yes, with this method i got all the urls loaded (a root one, and all resources there). But still the question is - how to override loading =( I have some ideas on how to replace image content, but still it isn't clear how to override original call. – Olegas Jan 27 '11 at 10:55
feedback

Since API 1 a PictureListener does exist.

v.setPictureListener(new PictureListener() {
     @Override
     public void onNewPicture(WebView view, Picture picture) {
          // TODO Auto-generated method stub
     }
};

Warning, this is out of documentation and research, not tested :)

link|improve this answer
feedback

An ultimate solution would be to embed a simple http server listening on your 'secret' port on loopback. Then you can substitute the matched image src URL with something like http://localhost:123/.../mypic.jpg

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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