我正在尝试使用以下代码设置ColorDrawable
backgroundDrawable 的边界,View
但它无法正常工作:
ColorDrawable d = new ColorDrawable(getContext().getResources()
.getColor(R.color.red));
d.setBounds(0, 0, 20, 20);
convertView.setBackgroundDrawable(d);
结果是 convertView 背景在此处被填充为红色。
谢谢。