I am struggling to find a way to make custom title bars that are declared in my Tab Widget class disspear when certain classes are selected. For example here is my tab widget class:
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.tabmain);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.my_custom_title);
Resources res = getResources();
TabHost tabHost = getTabHost();
TabHost.TabSpec spec;
Intent intent;
intent = new Intent().setClass(this, News.class);
spec = tabHost.newTabSpec("News").setIndicator("News",
res.getDrawable(R.drawable.widgetnews))
.setContent(intent);
tabHost.addTab(spec);
So this will load up the 'News' class first with the custom title bar which will display my image. Say I want to open up my other widget called 'More' I cannot get rid of the title bar. I have tried the following in my 'More' class:
setContentView(R.layout.main);
requestWindowFeature(Window.FEATURE_NO_TITLE);
and I have also done android:theme="@android:style/Theme.NoTitleBar" in the manifest file for the More class and it still wont be removed.
The reason I put my custom title bar code in the Tab Widget class instead of the class I want my custom title bar in, was because for the tab widget and custom title bar had to be called within the same class otherwise Id get errors, unless there is a work around I don't know about.
Any advice will be appreciated.
Thanks!