Android ripple RippleDrawable

使用系统的效果

            android:background="?selectableItemBackground"//selectableItemBackground有边界 selectableItemBackgroundBorderless无边界
            android:clickable="true"//指定clickable 或者为view设置onClickListener

自定义Ripple样式diy_ripple.xml



    //这个id需要指定一下,不能遗漏
        //限定View的形状
            
            
            
        
    

使用自定义的Ripple:diy_ripple.xml

            android:background="@drawable/diy_ripple"
            android:clickable="true"//指定clickable 或者为view设置onClickListener

你可能感兴趣的:(Android ripple RippleDrawable)