如何将用户定义的属性/值添加到 Android 清单文件中?

发布于 2024-12-12 09:33:06 字数 76 浏览 1 评论 0原文

我想将自定义属性/属性添加到清单文件中,并能够在运行时读取它。我想这样做,以便我可以通过这些清单属性自定义应用程序的行为。这怎么能做到呢?

I want to add a custom attribute / property into the manifest file, and be able to read it at run time. I want to do this so I can customize the app's behavior via these manifest properties. How can this be done?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

⒈起吃苦の倖褔 2024-12-19 09:33:06

您可以将元数据添加到 AndroidManifest.xml 文件中,然后在应用程序中读取它。

像这样写入数据:

<meta-data android:value="bar" android:name="foo"></meta-data>

并像这样读取数据:

ApplicationInfo ai = context.getPackageManager().getApplicationInfo(context.getPackageName(), PackageManager.GET_META_DATA);
Object value = (Object)ai.metaData.get("foo");

请参阅 http ://developer.android.com/guide/topics/manifest/meta-data-element.html

You can add meta-data to your AndroidManifest.xml file and then read that in your application.

Write the data like so:

<meta-data android:value="bar" android:name="foo"></meta-data>

And read the data like so:

ApplicationInfo ai = context.getPackageManager().getApplicationInfo(context.getPackageName(), PackageManager.GET_META_DATA);
Object value = (Object)ai.metaData.get("foo");

See http://developer.android.com/guide/topics/manifest/meta-data-element.html

悲念泪 2024-12-19 09:33:06

您可以在 res/values 中创建一个空资源文件,并向其中添加字符串和项目(对于布尔值或整数值)。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="foo">bar</string">
    <item name="testint" type="integer">33</item>
    <item name="testbool" type="bool">true</item>
</resources>

或者,您可以简单地使用 Constants 对象,在其中将属性定义为最终静态变量。

You can create an empty resource file in res/values and add strings and items (for bool or integer values) to it.

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="foo">bar</string">
    <item name="testint" type="integer">33</item>
    <item name="testbool" type="bool">true</item>
</resources>

Alternatively you could simply use a Constants object in which you define your properties as final static variables.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文