I am trying to figure out the available disk space on the Android phone running my application. Is there a way to do this programmatically?
Thanks,
Try StatFs.getAvailableBlocks. You'll need to convert the block count to KB with getBlockSize.