Merge "Unify storage calculations." into oc-dr1-dev
diff --git a/src/com/android/settings/deviceinfo/storage/StorageSummaryDonutPreference.java b/src/com/android/settings/deviceinfo/storage/StorageSummaryDonutPreference.java
index 44d3d44..d653f7c 100644
--- a/src/com/android/settings/deviceinfo/storage/StorageSummaryDonutPreference.java
+++ b/src/com/android/settings/deviceinfo/storage/StorageSummaryDonutPreference.java
@@ -39,6 +39,7 @@
import com.android.settings.overlay.FeatureFactory;
import com.android.settings.widget.DonutView;
+import java.text.NumberFormat;
import java.util.Locale;
/**
@@ -46,7 +47,7 @@
* on a given storage volume. It is visualized with a donut graphing the % used.
*/
public class StorageSummaryDonutPreference extends Preference implements View.OnClickListener {
- private int mPercent = -1;
+ private double mPercent = -1;
public StorageSummaryDonutPreference(Context context) {
this(context, null);
@@ -64,8 +65,7 @@
return;
}
- mPercent = MathUtils.constrain((int) ((usedBytes * 100) / totalBytes),
- (usedBytes > 0) ? 1 : 0, 100);
+ mPercent = usedBytes / (double) totalBytes;
}
@Override
diff --git a/src/com/android/settings/widget/DonutView.java b/src/com/android/settings/widget/DonutView.java
index 9a14b3b..b50a50a 100644
--- a/src/com/android/settings/widget/DonutView.java
+++ b/src/com/android/settings/widget/DonutView.java
@@ -39,7 +39,7 @@
// From manual testing, this is the longest we can go without visual errors.
private static final int LINE_CHARACTER_LIMIT = 10;
private float mStrokeWidth;
- private int mPercent;
+ private double mPercent;
private Paint mBackgroundCircle;
private Paint mFilledArc;
private TextPaint mTextPaint;
@@ -118,7 +118,7 @@
getWidth() - mStrokeWidth,
getHeight() - mStrokeWidth,
TOP,
- (360 * mPercent / 100),
+ (360 * (float) mPercent),
false,
mFilledArc);
}
@@ -140,7 +140,7 @@
/**
* Set a percentage full to have the donut graph.
*/
- public void setPercentage(int percent) {
+ public void setPercentage(double percent) {
mPercent = percent;
mPercentString = Utils.formatPercentage(mPercent);
mFullString = getContext().getString(R.string.storage_percent_full);