diff options
author | Jeff Sharkey <jsharkey@android.com> | 2011-06-14 22:41:21 -0700 |
---|---|---|
committer | Jeff Sharkey <jsharkey@android.com> | 2011-06-14 22:45:58 -0700 |
commit | 8e911d7b1a6817f67480b7677f8d36ab3bfb00f2 (patch) | |
tree | ade0f579570077df0c4b1544c0726034f9c92031 /src/com/android/settings/widget | |
parent | 5a259aae18892d63f2088b530f94fb695c7c16a0 (diff) | |
download | packages_apps_Settings-8e911d7b1a6817f67480b7677f8d36ab3bfb00f2.zip packages_apps_Settings-8e911d7b1a6817f67480b7677f8d36ab3bfb00f2.tar.gz packages_apps_Settings-8e911d7b1a6817f67480b7677f8d36ab3bfb00f2.tar.bz2 |
Data usage app labels, protect system, hide empty.
Derive better labels from PackageManager, including for sharedUid
case. Disable "App settings" button when no ResolveInfo found, and
hide "Restrict" checkbox for system UIDs. Also hide apps with 0
bytes usage.
Change-Id: I4b0a66f6912c02c56bfcbcb5b46f3ae2ba0df504
Diffstat (limited to 'src/com/android/settings/widget')
-rw-r--r-- | src/com/android/settings/widget/ChartNetworkSeriesView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/com/android/settings/widget/ChartNetworkSeriesView.java b/src/com/android/settings/widget/ChartNetworkSeriesView.java index 5fc79dd..780ca46 100644 --- a/src/com/android/settings/widget/ChartNetworkSeriesView.java +++ b/src/com/android/settings/widget/ChartNetworkSeriesView.java @@ -157,7 +157,8 @@ public class ChartNetworkSeriesView extends View { if (LOGD) { final RectF bounds = new RectF(); mPathFill.computeBounds(bounds, true); - Log.d(TAG, "onLayout() rendered with bounds=" + bounds.toString()); + Log.d(TAG, "onLayout() rendered with bounds=" + bounds.toString() + " and totalData=" + + totalData); } // drop to bottom of graph from current location |