Android Material Design 主题引用 - chuwuwang/ReadingNote GitHub Wiki

Theme 主题设置

  • @android:style/Theme.Material
  • @android:style/Theme.Material.Light
  • @android:style/Theme.Material.Light.DarkActionBar

但注意,这个定义不能放在values中,只能放在values-v21中。因为低版本的机型不识别这个主题。

因此,为了兼容低于androidL的机型,通常的做法,需要在values中,添加一个中间主题CustomCompactTheme。

对于values-21(高于5.0的版本), CustomCompactTheme可继承android.Theme.Material。

values-v21/styles.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <style name="CustomeCompatTheme" parent="android:Theme.Material">

    </style>
</resources>

⚠️ **GitHub.com Fallback** ⚠️