pub struct PermissionGroup {
pub description: Option<Resource<StringResource>>,
pub icon: Option<MipmapOrDrawableResource>,
pub label: Option<StringResourceOrString>,
pub name: Option<String>,
}Expand description
Declares a name for a logical grouping of related permissions.
Individual permission join the group through the permissionGroup attribute of the
<permission> element. Members of a group are presented together in
the user interface.
Note that this element does not declare a permission itself, only a category in which
permissions can be placed. See the <permission> element for element for
information on declaring permissions and assigning them to groups.
§XML Syntax
<permission-group android:description="string resource"
android:icon="drawable resource"
android:label="string resource"
android:name="string" />§Contained in
§Introduced in
API Level 1
Fields§
§description: Option<Resource<StringResource>>User-readable text that describes the group. The text should be longer and more explanatory than the label. This attribute must be set as a reference to a string resource. Unlike the label attribute, it cannot be a raw string.
icon: Option<MipmapOrDrawableResource>An icon representing the permission. This attribute must be set as a reference to a drawable resource containing the image definition.
label: Option<StringResourceOrString>A user-readable name for the group. As a convenience, the label can be directly set as a raw string while you’re developing the application. However, when the application is ready to be published, it should be set as a reference to a string resource, so that it can be localized like other strings in the user interface.
name: Option<String>The name of the group. This is the name that can be assigned to a
<permission> element’s <permissionGroup> attribute.
Trait Implementations§
Source§impl Clone for PermissionGroup
impl Clone for PermissionGroup
Source§fn clone(&self) -> PermissionGroup
fn clone(&self) -> PermissionGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more