0

I am currently using a webview to load a webpage which contains lots of javascript and having lots of trouble debugging what exactly gets loaded and when in the webview .

Then I saw this post where the op seems to be using apache log to monitor webpage load events in his webview. Enhance webView performance (should be the same performance as native Web Browser)

Can I get a similar utility plugin or anything so that I can use it with logcat in ddms view.

If possible please provide some resource as to how to configure it for android.

3
  • I think the OP is using a remote access tool (ssh?) to connect to his server and is viewing the Apache log from there. Have you tried subclassing WebView and providing your own implementations of onLoadResource, onPageFinished, and so on? That should give you some idea of if/when things are being loaded in the WebView. Commented Oct 2, 2012 at 15:43
  • well I haven't ..lemme try ..thanks for commenting Commented Oct 2, 2012 at 16:26
  • wheww it worked ... I used onloadresource method..can you please write the comment as an answer cause I want to accept is as an answer :) Commented Oct 2, 2012 at 17:24

1 Answer 1

1

I think the OP is using a remote access tool (ssh?) to connect to his server and is viewing the Apache log from there.

You could try subclassing WebView and providing your own implementations of onLoadResource, onPageFinished, and so on. That should give you some idea of if/when things are being loaded in the WebView.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.