android 按钮特效 波纹

Posted 韩亚飞_yue31313_韩梦飞沙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 按钮特效 波纹相关的知识,希望对你有一定的参考价值。

android 按钮特效 波纹

Android button effects ripple

 

作者:韩梦飞沙

Author:han_meng_fei_sha

 

邮箱:313134555@qq.com

E-mail: 313134555 @qq.com

 

这里写图片描述

在drawable下 新建一个xml文件,比如ripple.xml

Create a new XML file, such as ripple. XML, under drawable

内容如下:

The contents are as follows:

 ====================

<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="#FF9e9e9e">
<item android:drawable="@drawable/psb"/>
</ripple>
====================

其中
 <item android:drawable="@drawable/psb"/>
是自己定制的波纹效果的背景图片. 可有可无。

Among them

The < item android: drawable = "@ drawable/PSB" / >

A background image of your own custom ripple effects.

按钮背景改成这个。就行了。

I\'m going to change the button to this.Will do.

 

以上是关于android 按钮特效 波纹的主要内容,如果未能解决你的问题,请参考以下文章

使用按钮背景颜色为我的按钮添加波纹效果?

Android 按钮实现按压水波纹效果

Android特效专辑——点击水波纹效果实现,逻辑清晰实现简单

点击水波纹效果

Android5.0以上的项目都会有的按钮点击特效--水波纹

单击按钮时如何在按钮上产生圆形波纹?