im running jelly Bean on a physical device and trying to monitor network statistics. For example in DDMS there is a tab called network statistics and when you press start you can monitor network connection data transfers.
I specifically would like to monitor a few webviews i have: so i've done the following in my webclient:
@Override
public void onPageStarted(WebView view, String url,
android.graphics.Bitmap favicon) {
TrafficStats.setThreadStatsTag(0xF00D);
}
public void onPageFinished(WebView view, String url) {
TrafficStats.clearThreadStatsTag();
}
I was expecting to see a different color and im not seeing that tag listed (0xF00D) or a different color i only see a red color near the bottom of the screen capture.
What i need is to be able to differentiate different threads by color.