Add info string to advanced battery usage page

This CL adds an FYI string under the battery graph to let users
know that their current estimate is coming from the enhanced
estimate provider when it is enabled.

Test: Robotests
Bug: 38399654
Change-Id: If5cd622ef0251a5a483cef870fc2261369e14845
This commit is contained in:
Salvador Martinez
2017-06-19 10:33:41 -07:00
parent 39efd4ec44
commit cbefbc261f
7 changed files with 104 additions and 2 deletions

View File

@@ -132,4 +132,9 @@ public class PowerUsageFeatureProviderImpl implements PowerUsageFeatureProvider
public String getOldEstimateDebugString(String timeRemaining) {
return null;
}
@Override
public String getAdvancedUsageScreenInfoString() {
return null;
}
}