我想设置动态创建的视图的背景颜色,但我在以下位置强制关闭:
item1.setBackgroundColor(android.R.color.black);
在下面的代码中:
for (int i = 0; i < numberOfRows; i++) {
View shelfRow;
shelfRow.setBackgroundResource(R.drawable.shelf_row2);
ImageView item1 = (ImageView) findViewById(R.id.row_item1);
item1.setBackgroundColor(android.R.color.black);
parentPanel.addView(shelfRow);
}
并且还使用setImageDrawable设置 drawable得到了相同的结果。