【发布时间】:2015-05-21 19:57:50
【问题描述】:
我正在使用 AppCompat lib v22.1 为多个 android 版本提供一些材料设计。如果我使用新的小部件着色功能,即使使用 AppCompat,它也不会出现在 Kitkat 中。
在布局中:
<Button
android:id="@+id/mybtn"
android:text="Test"
android:theme="@style/MyTheme.BlueButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
在主题 xml 中:
<style name="MyTheme.BlueButton">
<item name="colorButtonNormal">@color/blue</item>
</style>
这是我做错了什么还是 AppCompat 中的错误?
【问题讨论】:
标签: android android-appcompat android-theme