我需要创建一个简单的Drawable
对象,并将所需的颜色作为背景颜色,但我不知道如何在不使用XML模式的情况下以编程方式执行此操作(可能真的吗?)。请告诉我,我需要它来制作LayerDrawable
并使用SeekBar
(以编程方式更改SeekBar
的背景)。先感谢您。
答案 0 :(得分:33)
您应该尝试使用ColorDrawable。可以使用构造函数ColorDrawable(int color)
答案 1 :(得分:5)
ColorDrawable会对您有所帮助,您可以为您的drawable传递参数color。
或者您可以执行以下操作:
ImageView imgStatus = (ImageView) findViewById(R.id.imgInfoIcon);
// Load the icon as drawable object
Drawable d = getResources().getDrawable(R.drawable.ic_menu_info_details);
// Get the color of the icon depending on system state
int iconColor = android.graphics.Color.BLACK
if (systemState == Status.ERROR)
iconColor = android.graphics.Color.RED
else if (systemState == Status.WARNING)
iconColor = android.graphics.Color.YELLOW
else if (systemState == Status.OK)
iconColor = android.graphics.Color.GREEN
// Set the correct new color
d.setColorFilter( iconColor, Mode.MULTIPLY );
// Load the updated drawable to the image viewer
imgStatus.setImageDrawable(d);
以上代码最初发布为here
答案 2 :(得分:4)
正如@Thrakbad所建议的那样,您可以使用ColorDrawable
:
TextView textView = new TextView(this);
ColorDrawable colorDrawable = new ColorDrawable(0xFFFF0000);
textView.setBackgroundDrawable(colorDrawable);