动态的修改xml中的drawable文件的solid颜色
xml文件中可以定义一个drawable文件,并设置solid,我们经常用这个作为背景。
但是有时候我们想在run time环境下动态的随机的修改 xml中drawable文件的颜色
可以通过以下方法
GradientDrawable background = (GradientDrawable) titleTextView.getBackground();
background.setColor(getResources().getColor(R.color.some_color));
GradientDrawable 对象也可以通过另一种方式获取
GradientDrawable drawable = (GradientDrawable) activity.getResources().getDrawable(R.drawable.blue_square_shape);
如果color也是动态的话 hex String
int color = Color.parseColor(String)
这样就可以在runtime状态下修改drawable文件中solid值