我有一个以编程方式创建的View
,我想在选择它时产生连锁反应。我能够使用?attr/selectableItemBackground
来实现这一点。但是,我也想在选择它时设置View
的背景颜色。我已尝试setBackgroundResource(selectableAttr)
然后setBackgroundColor(colorSelectBackground)
,但颜色似乎覆盖了资源,所以我只有一个或另一个。这是我的代码:
int[] attrs = new int[]{R.attr.selectableItemBackground};
TypedArray typedArray = context.obtainStyledAttributes(attrs);
int backRes = typedArray.getResourceId(0, 0);
public void select() {
view.setSelected(true);
view.setBackgroundResource(backRes);
view.setBackground(colorSelectBackground);
}
public void deselect() {
view.setSelected(false);
view.setBackground(colorSelectBackground);
}
任何人都知道我如何同时使用?attr/selectableItemBackground
并设置背景颜色?谢谢!
编辑:为了澄清,相关视图不是按钮,而是RelativeLayout
。
更新:我从来没有真正找到一个好的解决方案。我得到的最接近的是View.setForeground()
使用来自Drawable
的{{1}},即
TypedArray
这样做的主要缺点是它仅适用于API 23+。如果你想出一个更好的解决方案,请告诉我。
答案 0 :(得分:1)
我建议您创建一个自定义View
,您可以从xml获取pressedColor
,defaultColor
和disabledColor
。
以下代码适用于Material样式按钮:
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP)
{
ColorStateList colorStates = new ColorStateList(
new int[][]{
new int[]{android.R.attr.state_pressed},
new int[]{}
},
new int[]{
pressedColor,
defaultColor});
view.setBackgroundDrawable(isEnabled ? new RippleDrawable(colorStates, getBackground(), getBackground())
: new ColorDrawable(disabledColor);
}
else
{
StateListDrawable backgroundDrawable = new StateListDrawable();
backgroundDrawable.addState(new int[]{android.R.attr.state_pressed}, new ColorDrawable(isEnabled ?
pressedColor : disbledColor));
backgroundDrawable.addState(StateSet.WILD_CARD, new ColorDrawable(isEnabled ? defaultColor :
disabledColor));
view.setBackgroundDrawable(backgroundDrawable);
}