我的Xml代码:
<Button
android:id="@+id/link_btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/google_btn" />
我正在应用默认涟漪效应
<Button
android:id="@+id/link_btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground" />
但我需要按钮背景"@drawable/google_btn"
和
"?android:attr/selectableItemBackground"
。这意味着我需要自定义背景的涟漪效果。
答案 0 :(得分:8)
在drawable-v21
文件夹中,您可以自己编写涟漪效果代码。制作一个可绘制的xml文件,并按ripple
设置起始标记。像这样:
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="@color/colorAccentDark">
<item>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:drawable="@color/button_accent_dark"
android:state_checked="false"/>
<item
android:drawable="@color/button_accent"
android:state_checked="true" />
<item
android:drawable="@color/button_accent_dark" />
</selector>
</item>
</ripple>
答案 1 :(得分:7)
当按钮具有drawable的背景时,我们可以为前景参数添加涟漪效果。检查下面的代码,它是否适用于具有不同背景的按钮
<Button
android:layout_width="wrap_content"
android:layout_height="40dp"
android:gravity="center"
android:layout_centerHorizontal="true"
android:background="@drawable/shape_login_button"
android:foreground="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:text="@string/action_button_login"
/>
为涟漪效果添加以下参数
android:foreground="?attr/selectableItemBackgroundBorderless"
android:clickable="true"
android:focusable="true"
答案 2 :(得分:5)
<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?android:colorControlHighlight" >
<item
android:id="@android:id/mask"
android:drawable="@drawable/btn_rectangle"/>
<item android:drawable="@drawable/btn_rect_states"/>
</ripple>
在drawables中尝试上面的代码,根据需要提供自己的自定义可绘制背景。
答案 3 :(得分:0)
另一个选择是创建可绘制的图层列表并将其设置为背景。例如:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/button_background"/>
<item android:drawable="?attr/selectableItemBackground"/>
</layer-list>