样式和主题

   style  Theme 
   共同点:(1)定义的方式是一样的 
   不同点:(1)style作用范围比较窄 (控件 button textview)  theme 作用在activity或者Application节点下
 
    <style name="my_style">
        <item name="android:layout_width">match_parent</item>
        <item name="android:layout_height">wrap_content</item>
        <item name="android:textColor">#ff0000</item>
        <item name="android:textSize">45sp</item>
        
    </style>
    <style name="my_theme">
        <item name="android:background">#ff0000</item>
        
    </style>

 

posted @ 2016-10-17 19:07  iFat  阅读(132)  评论(0编辑  收藏  举报