当前代码显示所选标签的颜色。我想将其更改为现在显示图像。注释掉的代码是我认为可以工作的,不确定为什么不能。应该是什么????
非常感谢。
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"));
}
我错过了什么。再次感谢。
答案 0 :(得分:0)
知道了。发现我的错误......我很傻。我应该使用setBackgroundResource。
mTabHost.getTabWidget().getChildAt(i).setBackgroundResource(R.drawable.tabimg);
现在有效。谢谢。
希望这有助于某人。