android xml资源文件

    技术2022-05-14  19

    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>


    最新回复(0)