对按钮的物质作用有背景颜色的
我使用的是Android v21支持库。
我创建了一个自定义背景颜色的按钮。当我使用背景颜色时,材质设计效果如波纹,显示消失(除了点击的高度)。
<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"/>
白衣非少年
相关分类