android:theme 中整数值意味着什么?

发布于 2024-10-20 23:17:27 字数 295 浏览 1 评论 0原文

当我添加主题时,我使用语法

android:theme="@android:style/Something"

,我发现许多主题在 @android 之后使用整数值。例如,

<activity
    android:theme="@android:01030006"
    android:name=".SomeActivity">

Intellisense 不会显示主题的任何整数值。

有人可以解释一下吗?

When I add themes I use syntax

android:theme="@android:style/Something"

I see that many use Integer value after @android. For example

<activity
    android:theme="@android:01030006"
    android:name=".SomeActivity">

Intellisense does not show any Integer values for themes.

Can someone explain this?

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

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

发布评论

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

评论(1

一杯敬自由 2024-10-27 23:17:27

It's just a way to directly use Theme_NoTitleBar. As you know, in order to access any kind of resource from Java code, android assigns a integer to each resource (which is a constant in the R class). I guess that, if you use @android:01030006 directly, it could improve the parsing process... however I don't think there's a great improvement doing it that way.

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