TabWidget tw = getTabWidget();
for (int i = 0; i < tw.getChildCount(); i++) {
View v = tw.getChildAt(i);
v.setBackgroundColor(Color.parseColor("#666666"));
}
tw.getChildAt(0).setBackgroundColor(Color.parseColor("#B21206"));
我的活动中有两个选项卡。此代码将第一个选项卡的颜色固定为“RED”,但不会使第二个选项卡在单击时更改为“RED”。应该对代码进行哪些更改?