接下来学习一下水波纹的简单使用及水波纹颜色的自定义。
首先布局文件中给控件设置为可点击,及背景的添加
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:background="?android:attr/selectableItemBackgroundBorderless"//此背景为安卓中默认颜色
android:clickable="true"
android:text="默认水波纹颜色:无边界效果" />
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:background="?android:attr/selectableItemBackground"//此背景为安卓中默认颜色
android:clickable="true"
android:gravity="center"
android:text="默认水波纹颜色:*效果" />
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/ripple_item_background_normal"
android:clickable="true"
android:gravity="center"
android:text="自定义水波纹颜色:无边界效果" />
<TextView
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="16dp"
android:background="@drawable/ripple_item_background_select"
android:clickable="true"
android:gravity="center"
android:text="自定义水波纹颜色:有边界效果" />
</LinearLayout>
ripple_item_background_normal.xml文件的定义
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/colorAccent" />
ripple_item_background_select.xml文件的定义
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/colorAccent">
<item android:drawable="@color/colorPrimary" />
</ripple>
通过2种情况的xml文件会发现在定义drawable为控件的背景颜色,在没有定义的情况下为默认无边界效果