在 R.attr 中找到正确的样式
使用:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有主题属性引用首选项摘要文本的特定语义,首选项使用
?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.)引用 ID 的正确方法是使用
@
。如
@string/my_string
由于您希望直接引用Android定义的ID,请尝试以下操作:
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: