Styles and Themens(5)样式文件Style.xml中各元素的含义

Style Resource

See also

  Styles and Themes

  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
The filename is arbitrary. The element's 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:
1,<resources>
  Required. This must be the root node.
  No attributes.
2,<style>
  Defines a single style. Contains <item> elements.
  

attributes:

name StringRequired. A name for the style, which is used as the resource ID to apply the style to a View, Activity, or application.
parent Style resource. Reference to a style from which this style should inherit style properties.
3,<item>
  Defines a single property for the style. Must be a child of a <style> element.
  

attributes:

name Attribute resourceRequired. The name of the style property to be defined, with a package prefix if necessary (for example android:textColor).
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 in res/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!" />

 

posted @   f9q  阅读(374)  评论(0编辑  收藏  举报
编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 分享一个免费、快速、无限量使用的满血 DeepSeek R1 模型,支持深度思考和联网搜索!
· 基于 Docker 搭建 FRP 内网穿透开源项目(很简单哒)
· ollama系列1:轻松3步本地部署deepseek,普通电脑可用
· 按钮权限的设计及实现
· 【杂谈】分布式事务——高大上的无用知识?
点击右上角即可分享
微信分享提示