所有 Android 版本的通用 Android 对象样式?

Universal Android Objects Style for All Android Versions?

在Android Studio 中,对象样式因Android OS 版本而异。

如果 Lollipop 上有一个绿色按钮就可以了。但是在 Android 4.3(示例)上它们是灰色的。为什么?如何制作通用样式?

示例 Lollipop/Marshmallow:Here

示例Android 4.3:Here

编辑:当然,我在装有 Android 4.3 的真实设备上进行了尝试。我说的不仅仅是模拟器。

您必须创建自己的样式并使用它。

示例:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CodeFont" parent="@android:style/TextAppearance.Medium">
    <item name="android:layout_width">fill_parent</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:textColor">#00FF00</item>
</style>

您必须为按钮创建样式 这里有一个例子 custom button style