Skip to main content

Posts

Showing posts with the label android tabhost

How to change textcolor of tab text in Android

How to change textcolor of tab text in Android TabHost tabs = (TabHost)findViewById(R.id.TabHost01);         tabs.setup(getLocalActivityManager());                       TabHost.TabSpec search = tabs.newTabSpec("tag1");         search.setContent(new Intent(this,Searchgurbani.class));         search.setIndicator("Find Me");         tabs.addTab(search);                TabHost.TabSpec pref = tabs.newTabSpec("tag5");         pref.setContent(new Intent(this,Preferencegurbani.class));         pref.setIndicator("Settings");         tabs.addTab(pref);                TabHost.TabSpec favorite =...