Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Download the full file here
- http://raboninco.com/96BN
- _________________________________________
- Memory Size Class for viewing available storage
- import java.io.File;
- import android.os.Environment;
- import android.os.StatFs;
- public class MemoryStatus {
- static final int ERROR = -1;
- static public boolean externalMemoryAvailable() {
- return android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement