I am using 2.2 SDK version. and i used TabHost to display the activity in tab view format. when i install application in mobile phone(Version 2.2.1), the tab host color has been changed into yellow color. Even i dint give any color to TabHost. i dont know why the color has been changed. The same application when i run in emulator, it displays default color(ie) gray and black. can anyone faced and solved this issue pls guide me. Here the code
`
mTabHost.addTab(mTabHost.newTabSpec("one").setIndicator("classA").setContent(new Intent(this, classA.class)));
mTabHost.addTab(mTabHost.newTabSpec("two").setIndicator("classB").setContent(new Intent(this, classB.class)));
mTabHost.addTab(mTabHost.newTabSpec("three").setIndicator("classC").setContent(new Intent(this, classc.class)));`