Formatter.FormatShortFileSize(Context, Int64) Method

Definition

Like #formatFileSize, but trying to generate shorter numbers (showing fewer digits of precision).

[Android.Runtime.Register("formatShortFileSize", "(Landroid/content/Context;J)Ljava/lang/String;", "")]
public static string? FormatShortFileSize(Android.Content.Context? context, long sizeBytes);
[<Android.Runtime.Register("formatShortFileSize", "(Landroid/content/Context;J)Ljava/lang/String;", "")>]
static member FormatShortFileSize : Android.Content.Context * int64 -> string

Parameters

context
Context

Context to use to load the localized units. This value may be null.

sizeBytes
Int64

Size value to be formatted, in bytes.

Returns

Formatted string with the number.

Attributes

Remarks

Like #formatFileSize, but trying to generate shorter numbers (showing fewer digits of precision).

Java documentation for android.text.format.Formatter.formatShortFileSize(android.content.Context, long).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to