Most visited

Recently visited

Added in API level 21

FeatureGroupInfo

public final class FeatureGroupInfo
extends Object implements Parcelable

java.lang.Object
   ↳ android.content.pm.FeatureGroupInfo


一组应用程序可以请求的功能。 这对应于从AndroidManifest.xml的<feature-group>标记收集的信息。

Summary

Inherited constants

From interface android.os.Parcelable

Fields

public static final Creator<FeatureGroupInfo> CREATOR

public FeatureInfo[] features

该组所需的功能列表。

Public constructors

FeatureGroupInfo()
FeatureGroupInfo(FeatureGroupInfo other)

Public methods

int describeContents()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。

void writeToParcel(Parcel dest, int flags)

将此对象平铺到一个包裹中。

Inherited methods

From class java.lang.Object
From interface android.os.Parcelable

Fields

CREATOR

Added in API level 21
Creator<FeatureGroupInfo> CREATOR

features

Added in API level 21
FeatureInfo[] features

该组所需的功能列表。

也可以看看:

Public constructors

FeatureGroupInfo

Added in API level 21
FeatureGroupInfo ()

FeatureGroupInfo

Added in API level 21
FeatureGroupInfo (FeatureGroupInfo other)

Parameters
other FeatureGroupInfo

Public methods

describeContents

Added in API level 21
int describeContents ()

描述此Parcelable实例的封送表示中包含的特殊对象的种类。 例如,如果对象将在writeToParcel(Parcel, int)的输出中包含writeToParcel(Parcel, int) ,则此方法的返回值必须包含CONTENTS_FILE_DESCRIPTOR位。

Returns
int a bitmask indicating the set of special object types marshaled by this Parcelable object instance.

writeToParcel

Added in API level 21
void writeToParcel (Parcel dest, 
                int flags)

将此对象平铺到一个包裹中。

Parameters
dest Parcel: The Parcel in which the object should be written.
flags int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE.

Hooray!