Material Theme Android 操作栏样式生成器

Material Theme Android Action Bar Style Generator

是否有 Android Material 主题的操作栏样式生成器?

我正在寻找类似这样的东西 http://jgilfelt.github.com/android-actionbarstylegenerator/ 但支持新的 Material Style for Android(不是 Holo 风格)。

感谢提前:)

Material 主题使用着色和简单形状生成 UI。您不需要任何生成器,因为没有 9-patches 或任何其他图形。只需在主题中设置颜色(主色、重音色等)即可。

如工具中所述:

已弃用:考虑使用Toolbar or its support library equivalent

使用 AppCompat 库并在 styles.xml

中设置这些值
<style name="Theme.MyTheme" parent="Theme.AppCompat.Light">
    <!-- colorPrimary is used for the default action bar background -->
    <item name="colorPrimary">@color/my_color</item>

    <!-- colorPrimaryDark is used for the status bar -->
    <item name="colorPrimaryDark">@color/my_darker_color</item>

    <!-- colorAccent is used as the default value for colorControlActivated, which is used to tint widgets -->
    <item name="colorAccent">@color/accent</item>

    <!-- You can also set colorControlNormal, colorControlActivated
         colorControlHighlight, and colorSwitchThumbNormal. -->

</style>