public
final
class
EnvironmentCompat
extends Object
java.lang.Object | |
↳ | android.support.v4.os.EnvironmentCompat |
Helper for accessing features in Environment
introduced after API
level 4 in a backwards compatible fashion.
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 | |
---|---|
From
class
java.lang.Object
|
String MEDIA_UNKNOWN
Unknown storage state, such as when a path isn't backed by known storage media.
See also:
Constant Value: "unknown"
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 .
|