PermissionGroupInfopublic class PermissionGroupInfo extends PackageItemInfo implements android.os.ParcelableInformation you can retrieve about a particular security permission
group known to the system. This corresponds to information collected from the
AndroidManifest.xml's <permission-group> tags. |
Fields Summary |
---|
public int | descriptionResA string resource identifier (in the package's resources) of this
permission's description. From the "description" attribute or,
if not set, 0. | public CharSequence | nonLocalizedDescriptionThe description string provided in the AndroidManifest file, if any. You
probably don't want to use this, since it will be null if the description
is in a resource. You probably want
{@link PermissionInfo#loadDescription} instead. | public static final Creator | CREATOR |
Constructors Summary |
---|
public PermissionGroupInfo()
| public PermissionGroupInfo(PermissionGroupInfo orig)
super(orig);
descriptionRes = orig.descriptionRes;
nonLocalizedDescription = orig.nonLocalizedDescription;
| private PermissionGroupInfo(android.os.Parcel source)
super(source);
descriptionRes = source.readInt();
nonLocalizedDescription = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
|
Methods Summary |
---|
public int | describeContents()
return 0;
| public java.lang.CharSequence | loadDescription(PackageManager pm)Retrieve the textual description of this permission. This
will call back on the given PackageManager to load the description from
the application.
if (nonLocalizedDescription != null) {
return nonLocalizedDescription;
}
if (descriptionRes != 0) {
CharSequence label = pm.getText(packageName, descriptionRes, null);
if (label != null) {
return label;
}
}
return null;
| public java.lang.String | toString()
return "PermissionGroupInfo{"
+ Integer.toHexString(System.identityHashCode(this))
+ " " + name + "}";
| public void | writeToParcel(android.os.Parcel dest, int parcelableFlags)
super.writeToParcel(dest, parcelableFlags);
dest.writeInt(descriptionRes);
TextUtils.writeToParcel(nonLocalizedDescription, dest, parcelableFlags);
|
|