Android水波纹效果

原文1链接http://www.aoaoyi.com/archives/677.html

Android 中Layout布局实现点击水波纹效果


从Android5.0以后Button、TabLayout等控件默认都有点击水波纹效果,那像LinearLayout、RelativeLayout、TableLayout、FrameLayout、AbsoluteLayou怎么实现这种效果呢?

方式1:使用 ripple,这个API-21才有。

方式2:使用 RippleEffect或material-ripple,都是第三方优秀方案。

方式3:android:background="?attr/selectableItemBackground",简单、简洁。

我提倡使用方式3,不过使用的过程中需要注意一些问题:

1)、设置下面属性android:clickable="true" android:focusable="true";

2)、Layout实现View.OnClickListener();

3)、API 7+ (Android + AppCompat Support Library):实现方式是:android:background=“?attr/selectableItemBackground”;

=============================================
原文2链接http://blog.csdn.net/u012045061/article/details/50973425

如果的想要你的波纹没有按压的时候为透明状态,下面的写法是无效的.会导致按压没有效果


<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/deep_green">//这里是扩散水波纹的色值
    <item android:drawable="@android:color/transparent" />//这里你用透明色和透明的图片都是没有效果的
ripple>

正确的做法如下:


<ripple xmlns:android="http://schemas.android.com/apk/res/android"
    android:color="@color/deep_green">//这里是扩散水波纹的色值
     <item android:id="@android:id/mask" android:drawable="@color/white" />里面的色值可以任选一个
ripple>

android:id=”@android:id/mask”会让系统并不会真的绘制,并告知波纹的绘制边界

你可能感兴趣的:(android(转载),android,UI,android,布局,控件)