- بناء الجملة:
<meta-data android:name="string" android:resource="resource specification" android:value="string" />
- الواردة في:
<activity>
<activity-alias>
<application>
<provider>
<receiver>
<service>
- description:
- زوج الاسم والقيمة لعنصر من البيانات الإضافية العشوائية التي يمكن
المقدمة للمكون الأصلي. يمكن أن يحتوي العنصر المكون على أي
عدد العناصر الفرعية البالغ عددها
<meta-data>
. يجب أن القيم من كل يتم جمعها في عنصرBundle
واحد وإنشائها المتاحة للمكون حقلPackageItemInfo.metaData
.حدِّد القيم العادية من خلال
value
. . لتعيين رقم تعريف مورد كقيمة، استخدمresource
بدلاً من ذلك. على سبيل المثال: يعيّن الرمز التالي أي قيمة مخزّنة في@string/kangaroo
مورد إلى اسمzoo
:<meta-data android:name="zoo" android:value="@string/kangaroo" />
من ناحية أخرى، يؤدي استخدام السمة
resource
إلى تحديدzoo
المعرف الرقمي للمورد، وليس القيمة المخزنة في المورد:<meta-data android:name="zoo" android:resource="@string/kangaroo" />
ننصحك بشدّة بتجنّب توفير البيانات ذات الصلة إدخالات
<meta-data>
منفصلة متعددة. بدلاً من ذلك، إذا على بيانات معقدة لربطها بمكون، وتخزينها كمورد يمكنك استخدام السمةresource
لتحديد المكوّن الخاص بالمعرّف. - :
android:name
- اسمًا فريدًا للسلعة. لجعل الاسم فريدًا، استخدِم
اصطلاح تسمية نمط جافا، مثل
"
com.example.project.activity.fred
" android:resource
- إشارة إلى مورد معرِّف المورد هو القيمة المعينة
العنصر. يتم استرداد المعرّف من البيانات الوصفية
Bundle
باستخدام السمة طريقةBundle.getInt()
. android:value
- القيمة المخصّصة للعنصر أنواع البيانات التي يمكن تعيينها كقيم
يتم إدراج طرق
Bundle
التي تستخدمها المكوّنات لاسترداد هذه القيم في الجدول التالي:
النوع طريقة الحزمة سلسلة: استخدِم الشرطات المائلة للخلف المزدوجة ( \\
) لإلغاء الأحرف، مثل\\n
. لسطر جديد و\\uxxxxx
لحرف UnicodegetString()
عدد صحيح: على سبيل المثال، 100
getInt()
قيمة منطقية: إما true
أوfalse
getBoolean()
اللون: بالصيغة #rgb
أو#argb
أو#rrggbb
أو#aarrggbb
getInt()
عائم: على سبيل المثال، 1.23
getFloat()
- تم تقديمها في:
- المستوى 1 من واجهة برمجة التطبيقات
<meta-data>
يخضع كل من المحتوى وعيّنات التعليمات البرمجية في هذه الصفحة للتراخيص الموضحّة في ترخيص استخدام المحتوى. إنّ Java وOpenJDK هما علامتان تجاريتان مسجَّلتان لشركة Oracle و/أو الشركات التابعة لها.
تاريخ التعديل الأخير: 2025-07-27 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-27 (حسب التوقيت العالمي المتفَّق عليه)"],[],[],null,["# <meta-data\u003e\n\nsyntax:\n:\n\n ```xml\n \u003cmeta-data 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\n supplied to the parent component. A component element can contain any\n number of `\u003cmeta-data\u003e` subelements. The values from all of\n them are collected in a single [Bundle](/reference/android/os/Bundle) object and made\n available to the component as the\n [PackageItemInfo.metaData](/reference/android/content/pm/PackageItemInfo#metaData) field.\n\n Specify ordinary values through the [value](/guide/topics/manifest/meta-data-element#val)\n attribute. To assign a resource ID as the value, use the\n [resource](/guide/topics/manifest/meta-data-element#rsrc) attribute instead. For example,\n the following code assigns whatever value is stored in the `@string/kangaroo`\n resource to the `zoo` name:\n\n\n ```xml\n \u003cmeta-data android:name=\"zoo\" android:value=\"@string/kangaroo\" /\u003e\n ```\n\n\n On the other hand, using the `resource` attribute assigns `zoo`\n the numeric ID of the resource, not the value stored in the resource:\n\n\n ```xml\n \u003cmeta-data android:name=\"zoo\" android:resource=\"@string/kangaroo\" /\u003e\n ```\n\n\n We highly recommend that you avoid supplying related data as\n multiple separate `\u003cmeta-data\u003e` entries. Instead, if you\n have complex data to associate with a component, store it as a resource and\n use the `resource` attribute to inform the component of its ID.\n\nattributes:\n:\n\n `android:name`\n : A unique name for the item. To keep the name unique, use a\n Java-style naming convention, such as\n \"`com.example.project.activity.fred`\".\n\n `android:resource`\n : A reference to a resource. The ID of the resource is the value assigned\n to the item. The ID is retrieved from the meta-data `Bundle` using the\n [Bundle.getInt()](/reference/android/os/BaseBundle#getInt(java.lang.String)) method.\n\n `android:value`\n : The value assigned to the item. The data types that can be assigned as values and the\n `Bundle` methods that components use to retrieve those values are listed in the following table:\n\n\n | Type | Bundle method |\n |---------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------|\n | String: use double backslashes (`\\\\`) to escape characters, such as `\\\\n` for a new line and `\\\\uxxxxx` for a Unicode character | [getString()](/reference/android/os/BaseBundle#getString(java.lang.String)) |\n | Integer: for example, `100` | [getInt()](/reference/android/os/BaseBundle#getInt(java.lang.String)) |\n | Boolean: either `true` or `false` | [getBoolean()](/reference/android/os/BaseBundle#getBoolean(java.lang.String)) |\n | Color: in the form `#rgb`, `#argb`, `#rrggbb`, or `#aarrggbb` | [getInt()](/reference/android/os/BaseBundle#getInt(java.lang.String)) |\n | Float: for example, `1.23` | [getFloat()](/reference/android/os/Bundle#getFloat(java.lang.String)) |\n\n\nintroduced in:\n: API level 1"]]