android 点击水波纹效果
时间: 2023-10-18 08:59:00 浏览: 115
要在 Android 中添加点击水波纹效果,可以在 XML 中设置 `android:background="?attr/selectableItemBackground"` 属性,或者在 Java 代码中使用 `ViewCompat.setBackground(view, ContextCompat.getDrawable(context, R.drawable.ripple_effect))` 方法来设置背景。其中,`R.drawable.ripple_effect` 是你自定义的水波纹效果的 Drawable。需要注意的是,水波纹效果只能在 API 21 及以上的版本中生效。
阅读全文