ColorDrawable
backgroundDrawable の境界を設定しようとしView
ていますが、次のコードを使用して正しく機能していません:
ColorDrawable d = new ColorDrawable(getContext().getResources()
.getColor(R.color.red));
d.setBounds(0, 0, 20, 20);
convertView.setBackgroundDrawable(d);
その結果、ここで convertView の背景が赤色で塗りつぶされます。
ありがとう。