Android examples for Hardware:Memory
get Available Internal Memory Size Long In Bytes
//package com.java2s; import android.os.Environment; import android.os.StatFs; import java.io.File; public class Main { public static long getAvailableInternalMemorySizeLongInBytes() { File path = Environment.getDataDirectory(); StatFs stat = new StatFs(path.getPath()); long blockSize = stat.getBlockSize(); long availableBlocks = stat.getAvailableBlocks(); long result = blockSize * availableBlocks; return result; // return formatSize(availableBlocks * blockSize); }/*from w ww .j av a 2 s. co m*/ }