<permission-group>

syntax:
<permission-group android:description="string resource"
                  android:icon="drawable resource"
                  android:label="string resource"
                  android:name="string" />
contained in:
<manifest>
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.

관련된 퍼미션에 대한 논리적 그룹화를 위한 이름을 선언한다. 각각의 퍼미션은 <permission> 엘리먼트의 permissionGroup 애트리뷰트를 통해 그룹과 결합된다. 그룹의 멤버들은 사용자 인터페이스에서 함께 표시된다.

이 엘리먼트는 퍼미션 그 자체를 선언하지 않으며, 퍼미션이 놓일 수 있는 하나의 카테고리만을 선언한다는 것에 주의하라. 퍼미션을 선언하고, 그룹에 그것을 할당하는 것에 것에 대한 더 많은 정보에 대해서는 <permission> 엘리먼트를 보라.

attributes:
android:description
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.
그룹을 설명하는 사용자가 읽을 수 있는 텍스트. 그 텍스트는 라벨보다 더 길고 더 설명적이어야 한다. 이 애트리뷰트는 문자열 리소스에 대한 레퍼런스로써 설정되어야 한다. label 애트리뷰트와 달리, 그것은 원시 문자열이 될 수 없다.
android:icon
An icon representing the permission. This attribute must be set as a reference to a drawable resource containing the image definition.
퍼미션을 나타내는 아이콘. 이 애트리뷰트는 이미지 정의를 포함하고 있는 드로어블drawable 리소스에 대한 레퍼런스로 설정되어야 한다.
android:label
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.
그룹에 대한 사용자가 읽을 수 있는 이름. 편의상, 여러분이 애플리케이션을 개발하는 동안 라벨은 원시 문자열로 직접 설정될 수 있다. 하지만 애플리케이션이 배포될 준비가 되어 있을 때, 그것은 사용자 인터페이스의 다른 문자열처럼 로컬라이즈될 수 있도록 문자열 리소스에 대한 레퍼런스로써 설정되어야 한다.
android:name
The name of the group. This is the name that can be assigned to a <permission> element's <permissionGroup> attribute.
그룹의 이름. 이것은 <permission> 엘리먼트의 permissionGroup 애트리뷰트에 할당될 수 있는 이름이다.
introduced in:
API Level 1
see also:
<permission>
<permission-tree>
<uses-permission>
↑ Go to top