Required for r371

This commit is contained in:
Daniel Applebaum 2009-02-12 21:49:20 +00:00
parent 61aba8fa78
commit 0bf5dcf95b
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
package com.android.email.activity;
import android.content.Context;
import com.android.email.R;
public class SizeFormatter
{
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);
}
}