当前代码显示所选选项卡的颜色。我想将其更改为现在显示图像。注释掉的代码是我认为会起作用的,但不确定为什么不起作用。应该是什么????
非常感谢。
public void onTabChanged(String tabId) {
// TODO Auto-generated method stub
for(int i=0;i<mTabHost.getTabWidget().getChildCount();i++)
{
TabHost.getTabWidget().getChildAt(i).setBackgroundColor(Color.parseColor("#404040"));
//what I thought would work is this below ?????
//mTabHost.getTabWidget().getChildAt(i).getResources().getDrawable(R.drawable.tabimg);
}
mTabHost.getTabWidget().getChildAt(mTabHost.getCurrentTab()).setBackgroundColor(Color.parseColor("#271B1B"));
}
我错过了什么。再次感谢。