首页 > 其他分享 >Android开发 Ripple涟漪效果

Android开发 Ripple涟漪效果

时间:2022-11-09 18:22:40浏览次数:45  
标签:End 效果 ripple 涟漪 Ripple Android

前言

  此博客讲解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

相关文章