對於Android的 style 的 XML文件一樣也能夠繼承android
好比下面的 CodeFont 的style樣式:ide
<?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字體
例如:覆寫字體顏色spa
<stylename="CodeFont.Red">
xml
<item name="android:textColor">#FF0000</item>
繼承
</style>utf-8
擴展屬性,例如字體大小it
<stylename="CodeFont.Red.Big">
<item name="android:textSize">30sp</item>
</style>