k-9/src/com/fsck/k9/helper/SizeFormatter.java

27 lines
811 B
Java
Raw Normal View History

2010-12-12 20:02:39 -05:00
package com.fsck.k9.helper;
2009-02-12 16:49:20 -05:00
import android.content.Context;
import com.fsck.k9.R;
2009-02-12 16:49:20 -05:00
public class SizeFormatter {
/*
* Formats the given size as a String in bytes, kB, MB or GB with a single digit
* of precision. Ex: 12,315,000 = 12.3 MB
*/
public static String formatSize(Context context, long size) {
if (size > 1024000000) {
return ((float)(size / 102400000) / 10) + context.getString(R.string.abbrev_gigabytes);
}
if (size > 1024000) {
return ((float)(size / 102400) / 10) + context.getString(R.string.abbrev_megabytes);
}
if (size > 1024) {
return ((float)(size / 102) / 10) + context.getString(R.string.abbrev_kilobytes);
}
return size + context.getString(R.string.abbrev_bytes);
2009-02-12 16:49:20 -05:00
}
2009-02-12 16:49:20 -05:00
}