How to use fix crashes for marshmallow for android app development.
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 =...
Comments
Post a Comment