我正在使用Android v21支持库。
我创建了具有自定义背景色的按钮。当我使用背景色时,诸如波纹,显露之类的Material设计效果消失了(单击时的高程除外)。
<Button
style="?android:attr/buttonStyleSmall"
android:background="?attr/colorPrimary"
android:textColor="@color/white"
android:textAllCaps="true"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Button1"
/>
以下是一个普通按钮,效果正常。
<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAllCaps="true"
android:text="Button1"
/>