The Android Developers reference says that both the WebView.PictureListener interface and its onNewPicture() method are deprecated.

Fine, but the need to know when WebView renders a picture is still there. Is there an alternative way to accomplishing this?

link|improve this question

Isn't that what onLoadResource() is for? Maybe I'm wrong. How about overloading this, calling super.onLoadResource() and then checking for the file type? – Emmanuel Oct 24 '11 at 15:17
1  
Same question here: stackoverflow.com/questions/7166534/… – ciscogambo Oct 24 '11 at 16:31
@ciscogambo Your reference to ActivityManager.restartPackage() makes your Aug 23 question less clear and focused than this one. It's strange that no one has been able to come with an answer since Aug 23. Perhaps the lack of a replacement is intentional? Security reasons? – Android Eve Oct 24 '11 at 18:39
Thanks @AndroidEve, I cleaned removed that from my question. – ciscogambo Oct 25 '11 at 3:33
feedback

2 Answers

up vote 4 down vote accepted

Ok after careful review of the APIs, it seems this cannot be done without using PictureListener. Obviously the person who deprecated this feature didn't provide an alternative.

I suggest you write a bug report http://code.google.com/p/android/issues and ask people here to star it.

Emmanuel

link|improve this answer
feedback

the closest thing you have is onPageFinished

wv.setWebViewClient(new WebViewClient() {
  @Override
  public void onPageFinished(WebView view, String url) {
    super.onPageFinished(view, url);

  }
});

but it doesn't always trigger after the content is finished being drawn, hence not so much of a replacement. I suggest sticking to onNewPicture even if it is deprecated. after all, it still works.

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.