QS: Don't show graph or warning text when not present am: a03c641c60

am: 3a25aaaef2

Change-Id: Ie5b3cf615ef73d5c96b8410573ae57a795d9e7d7
This commit is contained in:
Jason Monk
2016-09-23 20:06:23 +00:00
committed by android-build-merger

View File

@@ -115,6 +115,12 @@ public class DataUsageDetailView extends LinearLayout {
final TextView infoBottom = (TextView) findViewById(R.id.usage_info_bottom_text);
infoBottom.setVisibility(bottom != null ? View.VISIBLE : View.GONE);
infoBottom.setText(bottom);
boolean showLevel = info.warningLevel > 0 || info.limitLevel > 0;
graph.setVisibility(showLevel ? View.VISIBLE : View.GONE);
if (!showLevel) {
infoTop.setVisibility(View.GONE);
}
}
private String formatBytes(long bytes) {