以编程方式设置可旋转的角半径



i创建一个RippleDrawable,如下所示。但是我无法更改可旋转的角落半径。它没有诸如setCornerRadii(float[] f)的方法。

public static RippleDrawable getPressedColorRippleDrawable(int normalColor, int pressedColor) {
    if (Build.VERSION.SDK_INT>=21) {
        RippleDrawable rippleDrawable = new RippleDrawable(getPressedColorSelector(normalColor, pressedColor), getColorDrawableFromColor(normalColor), null);
        //rippleDrawable.setRadius((int) Manager.convertDpToPixel(5));
        return rippleDrawable;
    }
    else
        return null;
}

和其他功能是

public static ColorStateList getPressedColorSelector(int normalColor, int pressedColor) {
    return new ColorStateList(
            new int[][]
                    {
                            new int[]{android.R.attr.state_pressed},
                            new int[]{android.R.attr.state_focused},
                            new int[]{android.R.attr.state_activated},
                            new int[]{}
                    },
            new int[]
                    {
                            pressedColor,
                            pressedColor,
                            pressedColor,
                            normalColor
                    }
    );
}
public static ColorDrawable getColorDrawableFromColor(int color) {
    return new ColorDrawable(color);
}

我该怎么做?

我正面临与您相同的问题:如何将角半径设置为 rippledrawable

进行的一种简单的方式是使用GradientDrawable。您可以用setCornerRadius设置半径,然后将配置的实例作为RippleDrawable构造函数的第二个参数。

这是一个示例:

ColorStateList pressedStates = ColorStateList.valueOf(Color.BLUE);
GradientDrawable contentDrawable = new GradientDrawable();
contentDrawable.setColor(Color.WHITE);
contentDrawable.setCornerRadius(16);
RippleDrawable rippleDrawable = new RippleDrawable(pressedStates, contentDrawable, null);
container.setBackground(rippleDrawable);

相关内容

  • 没有找到相关文章

最新更新