Skip to content

Instantly share code, notes, and snippets.

public class MemoryUtility
{
public static long getTotalInternalMemory( Context context )
{
long totalSpace = new File(context.getFilesDir().getAbsoluteFile().toString()).getTotalSpace();
return totalSpace;
}