belongs to Maven artifact com.android.support:support-compat:28.0.0-alpha1
EnvironmentCompat
  public
  
  final
  
  class
  EnvironmentCompat
  
    extends Object
  
  
  
  
  
  
| java.lang.Object | |
| ↳ | android.support.v4.os.EnvironmentCompat | 
Helper for accessing features in Environment.
Summary
Constants | |
|---|---|
String | 
        
          MEDIA_UNKNOWN
          Unknown storage state, such as when a path isn't backed by known storage media.  | 
    
Public methods | |
|---|---|
        
        
        static
        
        
        String
     | 
  
    
      
      getStorageState(File path)
      
      
        Returns the current state of the storage device that provides the given path.  | 
  
Inherited methods | |
|---|---|
  
    
  
    java.lang.Object
  
 | |
Constants
MEDIA_UNKNOWN
String MEDIA_UNKNOWN
Unknown storage state, such as when a path isn't backed by known storage media.
See also:
Constant Value: "unknown"
Public methods
getStorageState
String getStorageState (File path)
Returns the current state of the storage device that provides the given path.
| Parameters | |
|---|---|
path | 
        
          File  | 
      
| Returns | |
|---|---|
String | 
        one of MEDIA_UNKNOWN, MEDIA_REMOVED,
         MEDIA_UNMOUNTED,
         MEDIA_CHECKING,
         MEDIA_NOFS,
         MEDIA_MOUNTED,
         MEDIA_MOUNTED_READ_ONLY,
         MEDIA_SHARED,
         MEDIA_BAD_REMOVAL, or
         MEDIA_UNMOUNTABLE.
 |