Avoid division by zero in storage.
Bug: 26387833 Change-Id: I144475d4b82d91dcfd2271cd775e43d595914cef
This commit is contained in:
@@ -39,7 +39,11 @@ public class StorageItemPreference extends Preference {
|
|||||||
|
|
||||||
public void setStorageSize(long size, long total) {
|
public void setStorageSize(long size, long total) {
|
||||||
setSummary(Formatter.formatFileSize(getContext(), size));
|
setSummary(Formatter.formatFileSize(getContext(), size));
|
||||||
progress = (int)(size * PROGRESS_MAX / total);
|
if (total == 0) {
|
||||||
|
progress = 0;
|
||||||
|
} else {
|
||||||
|
progress = (int)(size * PROGRESS_MAX / total);
|
||||||
|
}
|
||||||
updateProgressBar();
|
updateProgressBar();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user