我想为按钮动态创建选择器。当按钮被禁用(setEnable(false)
)时,它的颜色应该改变。
StateListDrawable就是答案。
如果你只想让根据不同的状态改变的颜色,但是,不要写一堆与选择器相关的xml。
关键是动态地构建StateListDrawable。
我厌倦了写xml,所以我创建了一个StateListDrawableBuilder和一个DrawableBuilder来完成这个任务。
请查看,抱歉没有显示任何代码
我发现我的代码有一个愚蠢的错误。
方法创建选择器
public static StateListDrawable createSelectorsWithStates(int[] state,
Drawable[] drawables)
{
StateListDrawable stateDrawable = new StateListDrawable();
for (int i = 0; i < state.length; i++)
{
stateDrawable.addState(new int[] { state[i] }, drawables[i]);
}
return stateDrawable;
}
设置按钮可绘制:
Drawable enable = ResourceManager.createRectangleShape(
bgColor, null, borderRadius);
enable.setAlpha((int)0.5f);
Drawable disable = ResourceManager.createRectangleShape(
bgColor, null, borderRadius);
disable.setAlpha(150);
ResourceManager.setDrawable(v1, ResourceManager
.createSelectorsWithStates(new int[] {
android.R.attr.state_enabled,
-android.R.attr.state_enabled },
new Drawable[] { enable, disable }));
btn.setEnable(false);
btn.setBackgroundColor(color);