在 R.attr 中找到正确的样式

发布于 2024-12-01 20:37:51 字数 379 浏览 1 评论 0原文

使用:

android:textAppearance="?android:attr/...."

我想将 TextView 样式设置为看起来像 PreferenceScreen 中“summary”属性的默认样式。

使用这个官方列表中的样式,我已经尝试过” summary""summaryOn",但它们看起来都不像摘要的默认样式。谁能解释一下原因,或者建议我应该使用哪一个?

using:

android:textAppearance="?android:attr/...."

I would like to style a TextView to look like the default style of the "summary" attribute within a PreferenceScreen.

using the styles from this official list, I have tried "summary" and "summaryOn", but neither of them looks like the default style for summaries. Can anyone explain why, or suggest which one I should be using?

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

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

发布评论

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

评论(2

仙女山的月亮 2024-12-08 20:37:51

没有主题属性引用首选项摘要文本的特定语义,首选项使用 ?android:attr/textAppearanceSmall ,如下所示:http://goo.gl/3yZmx (这是 Android 框架用于首选项的布局文件。)

There isn't a theme attribute that refers to the specific semantic of preference summary text, preferences use ?android:attr/textAppearanceSmall as illustrated here: http://goo.gl/3yZmx (This is the layout file used by the Android framework for preference items.)

待天淡蓝洁白时 2024-12-08 20:37:51

引用 ID 的正确方法是使用 @

@string/my_string

由于您希望直接引用Android定义的ID,请尝试以下操作:

android:textAppearance="@android:id/summary"

The correct way to reference an ID is using @.

Such as @string/my_string

Since you wish to reference an ID defined by Android directly, try this:

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