0
一直在搜索這一段時間,並努力獲得任何工作。Android TabHost改變底部條的顏色
我需要將藍色底部欄的顏色更改爲十六進制值,我已更改了選項卡的背景顏色,但沒有更改TanHost上的藍色。有沒有可能改變這一點?我看到youtube使它成爲一個很好的紅色,所以它必須以某種方式可行!這是建立tabhost:
的選項卡片段通過自己的階級
// set up the tabhost
mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
mTabHost.setup(this, getSupportFragmentManager(), R.id.realtabcontent);
mTabHost.addTab(mTabHost.newTabSpec("event").setIndicator("Event Locations",
getResources().getDrawable(R.drawable.ic_event_tab)),
EventFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("itin").setIndicator("Itinerary",
getResources().getDrawable(R.drawable.ic_itin_tab)),
ItineraryFragment.class, null);
mTabHost.addTab(mTabHost.newTabSpec("info").setIndicator("Kendal Info",
getResources().getDrawable(R.drawable.ic_info_tab)),
KendalInfoFragment.class, null);
mTabHost.getTabWidget().setBackgroundColor(Color.RED);