样式和主题

   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>
原文地址:https://www.cnblogs.com/xufengyuan/p/5970881.html