Searched defs:formatPercentage (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Settings/src/com/android/settings/
H A DUtils.java327 public static String formatPercentage(long amount, long total) { method in class:Utils
328 return formatPercentage(((double) amount) / total);
332 public static String formatPercentage(int percentage) { method in class:Utils
333 return formatPercentage(((double) percentage) / 100.0);
337 private static String formatPercentage(double percentage) { method in class:Utils
347 return formatPercentage(getBatteryLevel(batteryChangedIntent));

Completed in 38 milliseconds