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 @ 2015-09-22 17:52  f9q  阅读(364)  评论(0编辑  收藏  举报