现在的位置: 首页 > 综合 > 正文

Android中颜色值列表

2013年01月25日 ⁄ 综合 ⁄ 共 540字 ⁄ 字号 评论关闭

<resources>


    <drawable name="red">#7f00</drawable>
    <drawable name="blue">#770000ff</drawable>

    <drawable name="green">#7700ff00</drawable>

    <drawable name="yellow">#77ffff00</drawable>


    <drawable name="screen_background_black">#ff000000</drawable>
    <drawable name="translucent_background">#e0000000</drawable>
    <drawable name="transparent_background">#00000000</drawable>

    <color name="solid_red">#f00</color>
    <color name="solid_blue">#0000ff</color>
    <color name="solid_green">#f0f0</color>
    <color name="solid_yellow">#ffffff00</color>

</resources>

抱歉!评论已关闭.