Migrate to refactored NetworkStats API.

Change-Id: I76452a67b74df873c88cb9092188e5e4ba83b991
This commit is contained in:
Jeff Sharkey
2011-07-12 13:53:11 -07:00
parent 078b435743
commit ebae659fc7
2 changed files with 19 additions and 11 deletions

View File

@@ -140,7 +140,7 @@ public class ChartNetworkSeriesView extends View {
mPathFill.reset();
// bail when not enough stats to render
if (mStats == null || mStats.bucketCount < 2) return;
if (mStats == null || mStats.size() < 2) return;
final int width = getWidth();
final int height = getHeight();
@@ -155,8 +155,11 @@ public class ChartNetworkSeriesView extends View {
long totalData = 0;
for (int i = 0; i < mStats.bucketCount; i++) {
final float x = mHoriz.convertToPoint(mStats.bucketStart[i]);
NetworkStatsHistory.Entry entry = null;
for (int i = 0; i < mStats.size(); i++) {
entry = mStats.getValues(i, entry);
final float x = mHoriz.convertToPoint(entry.bucketStart);
final float y = mVert.convertToPoint(totalData);
// skip until we find first stats on screen
@@ -170,7 +173,7 @@ public class ChartNetworkSeriesView extends View {
if (started) {
mPathStroke.lineTo(x, y);
mPathFill.lineTo(x, y);
totalData += mStats.rx[i] + mStats.tx[i];
totalData += entry.rxBytes + entry.txBytes;
}
// skip if beyond view