java.lang.Object | |
↳ | android.content.pm.PackageStats |
implementation of PackageStats associated with a application package.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Fields | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
CREATOR | |||||||||||
cacheSize | Size of cache used by the application. | ||||||||||
codeSize | Size of the code (e.g., APK) | ||||||||||
dataSize | Size of the internal data size for the application. | ||||||||||
externalCacheSize | Size of the external cache used by the application (i.e., on the SD card). | ||||||||||
externalCodeSize | Size of the secure container on external storage holding the application's code. | ||||||||||
externalDataSize | Size of the external data used by the application (e.g.,
|
||||||||||
externalMediaSize | Size of the external media size used by the application. | ||||||||||
externalObbSize | Size of the package's OBBs placed on external media. | ||||||||||
packageName | Name of the package to which this stats applies. |
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Describe the kinds of special objects contained in this Parcelable's
marshalled representation.
| |||||||||||
Returns a string containing a concise, human-readable description of this
object.
| |||||||||||
Flatten this object in to a Parcel.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.os.Parcelable
|
Size of cache used by the application. (e.g., /data/data/
Size of the internal data size for the application. (e.g.,
/data/data/
Size of the external cache used by the application (i.e., on the SD card). If this is a subdirectory of the data directory, this size will be subtracted out of the external data size.
Size of the secure container on external storage holding the application's code.
Size of the external data used by the application (e.g.,
Size of the external media size used by the application.
Size of the package's OBBs placed on external media.
Describe the kinds of special objects contained in this Parcelable's marshalled representation.
Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression:
getClass().getName() + '@' + Integer.toHexString(hashCode())
See Writing a useful
toString
method
if you intend implementing your own toString
method.
Flatten this object in to a Parcel.
dest | The Parcel in which the object should be written. |
---|---|
parcelableFlags | Additional flags about how the object should be written.
May be 0 or PARCELABLE_WRITE_RETURN_VALUE .
|