[Android L]Android L RippleView 效果 低版本实现

从github上看到的一个实现Android L RippleView效果的比较好的一个实例
使用简单
方法一:代码中添加,view为需要实现效果的控件
  1. MaterialRippleLayout.on(view)
  2.            .rippleColor(Color.BLACK)
  3.            .create();
复制代码
方法二:xml中添加
  1.     android:id="@+id/ripple"
  2.     android:layout_width="match_parent"
  3.     android:layout_height="wrap_content">

  4.    
  5.         android:layout_width="match_parent"
  6.         android:layout_height="wrap_content"
  7.         android:layout_gravity="center"
  8.         android:text="Button inside a ripple"/>

复制代码
百度网盘共享地址: http://pan.baidu.com/s/1mgkhpW0
github原地址: https://github.com/balysv/material-ripple

效果图:


你可能感兴趣的:(安卓学习笔记)