I know how to get the total loading time of a web page by using onPageStarted() and onPageFinished() in WebViewClient.
What I want to know is whether there is a way to extract detailed information on web page load such as time spent on parsing, rendering, etc.
Thank you in advance!
Use
method profilingin eclipse to get memory as well as time taken in each step of your application.Have a look here.
http://www.jpct.net/wiki/index.php/Profiling_Android_Applications
have a lok on its output format
Time/Callcell provides information regarding time ellapsed on particular actionThanks
Deepak