我正在尝试更改TabActivity
中标签的背景颜色。
因为我在下面做了,
tabHost.getTabWidget().getChildAt(totalTabs1-1).setBackgroundColor(Color.parseColor("#984b9d"));
但是我的工作不正常。
还有其他办法吗?
谢谢
答案 0 :(得分:2)
为此,你必须在drawable文件夹中为选项卡选择器编写一个xml文件。
tab_selector.xml
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<!-- When selected, use grey -->
<item android:drawable="@drawable/tab_selectinfo"
android:state_selected="true" />
<!-- When not selected, use white-->
<item android:drawable="@drawable/tab_unselectinfo" />
</selector>
并且在标签初始化时就像下面那样,
tabHost.newTabSpec("Info").setIndicator("Info", res.getDrawable(R.drawable.tab_selector)).setContent(intent);
答案 1 :(得分:1)
你可以试试这个:
...
setTabColor(tabHost);
tabHost.setOnTabChangedListener(new OnTabChangeListener() {
@Override
public void onTabChanged(String arg0) {
setTabColor(tabHost);
}
});
...
//Change The Backgournd Color of Tabs
public void setTabColor(TabHost tabhost) {
for(int i=0;i<tabhost.getTabWidget().getChildCount();i++)
tabhost.getTabWidget().getChildAt(i).setBackgroundColor(Color.DKGRAY); //unselecte
tabhost.getTabWidget().getChildAt(tabhost.getCurrentTab()).setBackgroundColor(Color.LTGRAY); // selected
}
答案 2 :(得分:0)
使用以下
for (int i = 0; i < Global.host.getTabWidget().getChildCount(); i++) {
Global.host.getTabWidget().getChildAt(i).setBackgroundDrawable(getResources().getDrawable(R.drawable.inactbg));
TextView tv = (TextView) Global.host.getTabWidget().getChildAt(i).findViewById(android.R.id.title);
tv.setTextColor(Color.parseColor("#ffffff"));
}