我有一个具有 3 种自定义状态的切换按钮: - Pressed - Checked - Realeased
我正在使用以下 xml:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@drawable/togglebutton_color_custom_ripple" android:state_pressed="true" />
<item android:drawable="@drawable/togglebutton_color_custom_checked" android:state_checked="true"/>
<item android:drawable="@drawable/togglebutton_color_custom_unchecked" />
</selector>
我想以编程方式更改此按钮的每个状态的背景颜色。我尝试使用以下代码:
StateListDrawable drawable = (StateListDrawable) mToggleButtonCustom.getBackground();
DrawableContainer.DrawableContainerState dcs = (DrawableContainer.DrawableContainerState) drawable.getConstantState();
Drawable[] drawableItems = dcs.getChildren();
GradientDrawable gradientDrawablePressed = (GradientDrawable) drawableItems[0];
GradientDrawable gradientDrawableChecked = (GradientDrawable) drawableItems[1];
GradientDrawable gradientDrawableUnChecked = (GradientDrawable) drawableItems[2];
gradientDrawablePressed.setColor(Color.parseColor(color));
gradientDrawableChecked.setColor(Color.parseColor(color));
gradientDrawableUnChecked.setColor(Color.parseColor(color));
它适用于“已检查”和“已发布”状态,因为我在 XML 中使用经典形状,但它不适用于“按下”状态,因为我在 XML 中使用了以下波纹效果:
<?xml version="1.0" encoding="utf-8"?>
<ripple
xmlns:android="http://schemas.android.com/apk/res/android"
android:color="@color/ripple">
<item>
<shape android:shape="oval">
<size
android:height="@dimen/togglebutton_size"
android:width="@dimen/togglebutton_size" />
<solid android:color="@color/blue_vs"/>
<stroke android:width="@dimen/togglebutton_button_stroke"
android:color="@color/white" />
</shape>
</item>
</ripple>
似乎我必须在我的代码中使用“RippleDrawable”,但我真的不明白如何,我只是想更改纯色背景颜色,而不是波纹颜色或笔触。
谢谢