mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-15 05:55:06 -05:00
27 lines
811 B
Java
27 lines
811 B
Java
package com.fsck.k9.helper;
|
|
|
|
import android.content.Context;
|
|
import com.fsck.k9.R;
|
|
|
|
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);
|
|
}
|
|
|
|
}
|
|
|
|
|