Android Utils

Android UI 的 Style 和 Theme

2015-04-23  本文已影响126人  几千里也

谷歌的文档很不错

Styles and Themes
Android Styles
Android Themes

摘录一些重点备忘

最后还是上点代码

<?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>
    <style name="CodeFont.Red">
        <item name="android:textColor">#FF0000</item>
    </style>
    <style name="CodeFont.Red">
        <item name="android:textColor">#FF0000</item>
    </style>
</resources>
<application android:theme="@style/CustomTheme">
<activity android:theme="@android:style/Theme.Translucent">
上一篇 下一篇

猜你喜欢

热点阅读