Advertisement
ahmad191444

Memory Size Class for viewing available storage

Apr 4th, 2020
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. Download the full file here
  2.  
  3. http://raboninco.com/96BN
  4. _________________________________________
  5. Memory Size Class for viewing available storage
  6.  
  7. import java.io.File;
  8.  
  9. import android.os.Environment;
  10. import android.os.StatFs;
  11.  
  12. public class MemoryStatus {
  13.  
  14.         static final int ERROR = -1;
  15.        
  16.         static public boolean externalMemoryAvailable() {
  17.             return android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED);
  18.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement