get Available Internal Memory Size - Android Hardware

Android examples for Hardware:Memory

Description

get Available Internal Memory Size

Demo Code


//package com.java2s;

import java.io.File;

import android.os.Environment;
import android.os.StatFs;

public class Main {

    public static long getAvailableInternalMemorySize() {
        File path = Environment.getDataDirectory();
        StatFs stat = new StatFs(path.getPath());
        long blockSize = stat.getBlockSize();
        long totalBlocks = stat.getBlockCount();
        return totalBlocks * blockSize;
    }//from  w w w.  jav a2 s  .  c  o m
}

Related Tutorials