Styles and Themens(5)样式文件Style.xml中各元素的含义
Style Resource
See also
A style resource defines the format and look for a UI. A style can be applied to an individual View
(from within a layout file) or to an entire Activity
or application (from within the manifest file).
For more information about creating and applying styles, please readStyles and Themes.
Note: A style is a simple resource that is referenced using the value provided in the name attribute (not the name of the XML file). As such, you can combine style resources with other simple resources in the one XML file, under one <resources> element.
- FILE LOCATION:
-
res/values/filename.xml
name
will be used as the resource ID. - RESOURCE REFERENCE:
-
In XML: @[package:]style/style_name
- SYNTAX:
-
1 <?xml version="1.0" encoding="utf-8"?> 2 <resources> 3 <style 4 name="style_name" 5 parent="@[package:]style/style_to_inherit"> 6 <item 7 name="[package:]style_property_name" 8 >style_value</item> 9 </style> 10 </resources>
- ELEMENTS:
attributes:
attributes:
- EXAMPLE:
- XML file for the style (saved in
res/values/
): -
1 <?xml version="1.0" encoding="utf-8"?> 2 <resources> 3 <style name="CustomText" parent="@style/Text"> 4 <item name="android:textSize">20sp</item> 5 <item name="android:textColor">#008</item> 6 </style> 7 </resources>
- XML file that applies the style to a
TextView
(saved inres/layout/
): -
1 <?xml version="1.0" encoding="utf-8"?> 2 <EditText 3 style="@style/CustomText" 4 android:layout_width="fill_parent" 5 android:layout_height="wrap_content" 6 android:text="Hello, World!" />
- XML file for the style (saved in
分类:
Android 布局,样式
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
· 【杂谈】分布式事务——高大上的无用知识?