Android改变button背景色与获取button背景色

改变背景色

 button.setBackgroundColor(int c);


获取背景色
 Drawable background=button.getBackground();
        ColorDrawable colorDrawable = (ColorDrawable) background;
        int color=colorDrawable.getColor();


你可能感兴趣的:(Android)