前言
此博客讲解Android5.0版本之后的涟漪效果的使用
简单的使用例子
ripple_ic_bg.xml
<?xml version="1.0" encoding="utf-8"?> <ripple xmlns:android="http://schemas.android.com/apk/res/android" android:color="#000000"> </ripple>
添加到view上
<ImageView android:id="@+id/image" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@mipmap/ic_learning_center_1" android:background="@drawable/ripple_ic_bg" app:layout_constraintTop_toTopOf="parent" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent"/>
效果图:
End
标签:End,效果,ripple,涟漪,Ripple,Android From: https://www.cnblogs.com/guanxinjing/p/16874739.html