1

我正在使用一个显示正常波纹的按钮,但是如果我更改为无边框波纹不起作用。布局内的按钮位置应该在哪里才能始终使这种波纹起作用?它现在位于相对布局内部,并且位于包含图像、按钮和其他内容的其他相对布局之上。

4

1 回答 1

1

我做了一个图书馆,让你的问题很容易解决

https://github.com/xgc1986/RippleViews

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/btn1"
    android:background:"the color of the button that you want, that important for your case"
    android:text="Default android button"/>

然后用java

View b1 = findViewById(R.id.btn1);

b1.setBackground(RippleDrawableHelper.createRippleDrawable(b1, rippleColor));

这是文档:https ://github.com/xgc1986/RippleViews/blob/master/docs/RippleDrawableHelper.md

编辑

View b1 = findViewById(R.id.btn1);
// this may work
View v2 = findViewById(R.id.parent); //the are where the ripple effect extends
//change the view you send in the function

b1.setBackground(RippleDrawableHelper.createRippleDrawable(v2, rippleColor));

如果这可行,是因为它为视图创建了一个 RippleDrawable,但是您可以将此可绘制对象分配给另一个视图,然后当您按下 b1 视图时,它会显示相对于 v2 的波纹

于 2015-03-17T14:54:07.877 回答