对于Android的 style 的 XML文件同样也可以继承
比如下面的 CodeFont 的style样式:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CodeFont"parent="@android:style/TextAppearance.Medium">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:textColor">#00FF00</item>
<item name="android:typeface">monospace</item>
</style>
</resources>
如果我们想继承 覆写 CodeFont某些属性 可以是 配置一个 CodeFont.xxx
例如:覆写字体颜色
<stylename="CodeFont.Red">
<item name="android:textColor">#FF0000</item>
</style>
扩展属性,例如字体大小
<stylename="CodeFont.Red.Big">
<item name="android:textSize">30sp</item>
</style>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。