android xml资源文件

来源:互联网 发布:windows抄袭mac字体 编辑:程序博客网 时间:2024/04/30 12:08

1.strings

字符串string支持简单的文本样式(如粗体、斜体、下划线等)

下划线:<string name="hello"><u>Hello World, Test1!</u></string>

粗体:    <string name="hello"><b>Hello World, Test1!</b></string>

斜体:    <string name="hello"><i>Hello World, Test1!</i></string>

 

2.styles

styles 使用关键字parent支持继承关系

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="BaseText">
<item name="android:textSize">14sp</item>
<item name="android:textColor">#111</item>
</style>
<style name="SmallText" parent="BaseText">
<item name="android:textSize">8sp</item>
</style>
</resources>

原创粉丝点击