您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在Android中,为按钮添加涟漪效果可以使用MaterialButton
和RippleDrawable
res/drawable
目录下创建一个名为button_ripple.xml
的文件。如果drawable
目录不存在,请创建一个。<?xml version="1.0" encoding="utf-8"?>
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
android:color="?attr/colorControlHighlight">
<item android:id="@android:id/mask">
<color android:color="#fff" />
</item>
</ripple>
在这个文件中,我们定义了一个涟漪效果,使用了?attr/colorControlHighlight
作为涟漪的颜色。你还可以自定义颜色。接下来,我们需要将这个RippleDrawable
应用到MaterialButton
上。
activity_main.xml
)中添加一个MaterialButton
。<com.google.android.material.button.MaterialButton
android:id="@+id/my_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me"
android:background="?attr/selectableItemBackgroundBorderless"
app:rippleColor="@color/button_ripple" />
在这里,我们使用app:rippleColor
属性将之前创建的button_ripple.xml
文件应用到按钮上。注意,我们还使用了?attr/selectableItemBackgroundBorderless
作为按钮的背景,以获得更好的视觉效果。
现在,当你点击按钮时,应该可以看到涟漪效果。请注意,为了使涟漪效果正常工作,你的应用需要使用AndroidX库中的MaterialComponents
。如果你的项目仍在使用旧版的Android支持库,请将其迁移到AndroidX。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。