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.os.Environment;

import android.os.StatFs;

import android.text.format.Formatter;

import java.io.File;

public class Main {

    public static String getMemTotalSize(Context ctx) {
        File path = Environment.getDataDirectory();
        StatFs stat = new StatFs(path.getPath());
        long blockSize = stat.getBlockSize();
        long totalBlocks = stat.getBlockCount();
        return Formatter.formatFileSize(ctx, blockSize * totalBlocks);
    }
}