- składnia:
<property android:name="string" android:resource="resource specification" android:value="string" />
- zawarte w:
<activity>
<activity-alias>
<application>
<provider>
<receiver>
<service>
- description:
- Para nazwa-wartość elementu dodatkowych, dowolnych danych, które można przekazać do
komponent nadrzędny. Element komponentu może zawierać dowolną liczbę podelementów
<property>
. Prawidłowe nazwy obejmują dowolną stałe właściwości zdefiniowane w zajęciaPackageManager
, Zdefiniowano tagi (PackageManager.Property
) w klasach takich jakWindowProperties
i dowolne stałe zdefiniowane doraźnie. Uzyskuj wartości pojedynczo za pomocą MetodaPackageManager.getProperty()
.Za pomocą atrybutu
android:value
możesz określić zwykłe wartości. Podaj identyfikatory zasobów za pomocąandroid:resource
. Określanie Zarównoandroid:value
, jak iandroid:resource
są nieprawidłowe.Na przykład ten kod przypisuje wartość zapisaną w zasobie
@string/kangaroo
do nazwa dla elementuzoo
:<property android:name="zoo" android:value=”@string/kangaroo” />
Kod w tym miejscu przypisuje jednak identyfikator liczbowy zasobu, a nie wartość zapisaną w zasobie
zoo
:<property android:name="zoo" android:resource=”@string/kangaroo” />
- atrybuty:
android:name
- Nazwa usługi. Jeśli kilka równorzędnych tagów
<property>
ma parametr o tej samej nazwie. android:resource
- Odniesienie do zasobu. Identyfikator zasobu to wartość przypisana do usługi. Identyfikator można pobrać
z usługi przez
PackageManager.Property.getResourceId()
android:value
- Wartość przypisana do usługi. Tabela poniżej zawiera listę prawidłowych typów danych i metod akcesorów dla wartości
atrybut:
Typ Uzyskujący dostęp do PackageManager.property Ciąg znaków: użyj podwójnych ukośników lewych (\\) do zmiany znaczenia znaków; na przykład \\n
i\\uxxxxx
dla znaku UnicodegetString()
Liczba całkowita: na przykład 100
getInteger()
Wartość logiczna: true
lubfalse
getBoolean()
Kolor: w formacie #rgb
,#argb
,#rrggbb
lub#aarrggbb
getInteger()
Liczba zmiennoprzecinkowa: na przykład 1.23
.getFloat()
Uwaga: tag
<property>
nie może zawierać jednocześnie elementuandroid:value
i Atrybutyandroid:resource
. W takim przypadku preferowana jest opcjaandroid:resource
.- wprowadzone w:
- Poziom API 31
<usługa>
Treść strony i umieszczone na niej fragmenty kodu podlegają licencjom opisanym w Licencji na treści. Java i OpenJDK są znakami towarowymi lub zastrzeżonymi znakami towarowymi należącymi do firmy Oracle lub jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-27 UTC.
[null,null,["Ostatnia aktualizacja: 2025-07-27 UTC."],[],[],null,["# <property\u003e\n\nsyntax:\n:\n\n ```xml\n \u003cproperty android:name=\"string\"\n android:resource=\"resource specification\"\n android:value=\"string\" /\u003e\n ```\n\ncontained in:\n: [\u003cactivity\u003e](/guide/topics/manifest/activity-element)\n\n [\u003cactivity-alias\u003e](/guide/topics/manifest/activity-alias-element)\n\n [\u003capplication\u003e](/guide/topics/manifest/application-element)\n\n [\u003cprovider\u003e](/guide/topics/manifest/provider-element)\n\n [\u003creceiver\u003e](/guide/topics/manifest/receiver-element)\n\n [\u003cservice\u003e](/guide/topics/manifest/service-element)\n\ndescription:\n: A name-value pair for an item of additional, arbitrary data that can be supplied to the\n parent component. A component element can contain any number of `\u003cproperty\u003e` subelements. Valid names\n include any of the [property constants](/reference/android/content/pm/PackageManager#constants_1) defined in\n the [PackageManager](/reference/android/content/pm/PackageManager) class,\n [PackageManager.Property](/reference/android/content/pm/PackageManager.Property) tags defined\n in classes such as [WindowProperties](/reference/kotlin/androidx/window/WindowProperties), and arbitrary constants defined ad hoc. Obtain values individually using the\n [PackageManager.getProperty()](/reference/android/content/pm/PackageManager#getProperty(java.lang.String,%20java.lang.String)) method.\n\n Specify ordinary values with the [android:value](/guide/topics/manifest/property-element#val)`\n ` attribute. Specify resource IDs with the\n [android:resource](/guide/topics/manifest/property-element#rsrc) attribute. Specifying\n both `android:value` and `android:resource` is invalid.\n\n\n For example, the following code assigns whatever value is stored in the `@string/kangaroo` resource to\n the `zoo` name:\n\n\n ```xml\n \u003cproperty android:name=\"zoo\" android:value=”@string/kangaroo” /\u003e\n ```\n\n\n The code here, however, assigns the numeric ID of the resource, not the value stored in the resource, to\n `zoo`:\n\n\n ```xml\n \u003cproperty android:name=\"zoo\" android:resource=”@string/kangaroo” /\u003e\n ```\n\nattributes:\n:\n\n `android:name`\n : The name of the property. A parsing error results if multiple, sibling `\u003cproperty\u003e` tags have the\n same name.\n\n `android:resource`\n : A reference to a resource. The ID of the resource is the value assigned to the property. The ID can be retrieved\n from the property by\n [PackageManager.Property.getResourceId()](/reference/android/content/pm/PackageManager.Property#getResourceId()).\n\n `android:value`\n : A value assigned to the property. The following table lists valid data types and accessor methods for the value\n attribute: \n\n\n | Type | PackageManager.Property accessor |\n |-----------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------|\n | String: Use double backslashes (\\\\\\\\) to escape characters; for example, `\\\\n` and `\\\\uxxxxx` for a Unicode character | [getString()](/reference/android/content/pm/PackageManager.Property#getString()) |\n | Integer: For example, `100` | [getInteger()](/reference/android/content/pm/PackageManager.Property#getInteger()) |\n | Boolean: Either `true` or `false` | [getBoolean()](/reference/android/content/pm/PackageManager.Property#getBoolean()) |\n | Color: In the form `#rgb`, `#argb`, `#rrggbb`, or `#aarrggbb` | [getInteger()](/reference/android/content/pm/PackageManager.Property#getInteger()) |\n | Float: For example, `1.23` | [getFloat()](/reference/android/content/pm/PackageManager.Property#getFloat()) |\n\n\nintroduced in:\n: API Level 31"]]