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 =...
This blog is just to help out any android developer who is stuck at any point of time.Feel free to ask any questions and issues on android i will try my level best to provide solution as soon as possible