我使用的是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"
/>


当前回答

当你使用android:background时,你正在用空白颜色替换按钮的大部分样式和外观。

更新:在23.0.0版本的AppCompat发布中,有一个新的Widget.AppCompat.Button.Colored样式,它使用你的主题的colorButtonNormal来禁用颜色,colorAccent来启用颜色。

这可以让你直接应用到你的按钮通过

<Button
  ...
  style="@style/Widget.AppCompat.Button.Colored" />

如果你需要一个自定义的colorButtonNormal或colorAccent,你可以使用一个ThemeOverlay,正如在这个专业技巧和android:主题上的按钮。

以前的回答

你可以在你的v21目录中使用一个可绘制的后台,比如:

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
        android:color="?attr/colorControlHighlight">
    <item android:drawable="?attr/colorPrimary"/>
</ripple>

这将确保你的背景颜色是?attr/colorPrimary,并使用默认的?attr/colorControlHighlight(如果你愿意,你也可以在你的主题中设置)拥有默认的波纹动画。

注意:你必须为v21以下的版本创建一个自定义选择器:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/primaryPressed" android:state_pressed="true"/>
    <item android:drawable="@color/primaryFocused" android:state_focused="true"/>
    <item android:drawable="@color/primary"/>
</selector>

假设有一些您想要的默认、按下和聚焦状态的颜色。就我个人而言,我在被选中的过程中截取了一个波纹的屏幕截图,并从中提取了主/聚焦状态。

其他回答

当你使用android:background时,你正在用空白颜色替换按钮的大部分样式和外观。

更新:在23.0.0版本的AppCompat发布中,有一个新的Widget.AppCompat.Button.Colored样式,它使用你的主题的colorButtonNormal来禁用颜色,colorAccent来启用颜色。

这可以让你直接应用到你的按钮通过

<Button
  ...
  style="@style/Widget.AppCompat.Button.Colored" />

如果你需要一个自定义的colorButtonNormal或colorAccent,你可以使用一个ThemeOverlay,正如在这个专业技巧和android:主题上的按钮。

以前的回答

你可以在你的v21目录中使用一个可绘制的后台,比如:

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
        android:color="?attr/colorControlHighlight">
    <item android:drawable="?attr/colorPrimary"/>
</ripple>

这将确保你的背景颜色是?attr/colorPrimary,并使用默认的?attr/colorControlHighlight(如果你愿意,你也可以在你的主题中设置)拥有默认的波纹动画。

注意:你必须为v21以下的版本创建一个自定义选择器:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@color/primaryPressed" android:state_pressed="true"/>
    <item android:drawable="@color/primaryFocused" android:state_focused="true"/>
    <item android:drawable="@color/primary"/>
</selector>

假设有一些您想要的默认、按下和聚焦状态的颜色。就我个人而言,我在被选中的过程中截取了一个波纹的屏幕截图,并从中提取了主/聚焦状态。

下面是一种简单且向后兼容的方法,可以通过自定义背景向凸起的按钮传递涟漪效应。

你的布局应该是这样的

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/my_custom_background"
    android:foreground="?android:attr/selectableItemBackground"/>

我试了一下:

android:backgroundTint:"@color/mycolor"

而不是改变背景属性。 这并不能消除物质效应。

<android.support.v7.widget.AppCompatButton
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:backgroundTint="#fff"
    android:textColor="#000"
    android:text="test"/>

Use

xmlns:app="http://schemas.android.com/apk/res-auto"

颜色也会在棒棒糖前被接受

我来这篇文章寻找一种方法,有一个背景颜色的我的ListView项目,但保持波纹。

我简单地添加了我的颜色作为背景,selectableItemBackground作为前景:

<style name="my_list_item">
    <item name="android:background">@color/white</item>
    <item name="android:foreground">?attr/selectableItemBackground</item>
    <item name="android:layout_height">@dimen/my_list_item_height</item>
</style>

它就像一个魔法。我想同样的技巧也可以用在按钮上。祝你好运。