Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import android.content.Context;

import android.text.format.Formatter;

public class Main {
    private static Context sContext;

    public static String formatByteSize(long size) {
        return Formatter.formatFileSize(getAppContext(), size);
    }

    public static Context getAppContext() {
        return sContext;
    }
}