是否有可能以编程方式更改TableLayout中整个列的背景颜色?
答案 0 :(得分:1)
试试这样。
TableRow tableRow = (TableRow) findViewById(rowID);
tableRow .setBackgroundColor(Color.BLACK);
答案 1 :(得分:0)
答案 2 :(得分:0)
TableLayout tableLayout = (TableLayout)findViewById(R.id.table_layout_sample);
TableRow tableRow = (TableRow)tableLayout.findViewById(R.id.table_row);
tableRow.setBackgroundColor(getResources().getColor(android.R.color.holo_orange_light));