Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Java by chathura ( 12 years ago )
final TabHost tabs= (TabHost) findViewById(R.id.tabhost);
tabs.setup();
TabHost.TabSpec spec=tabs.newTabSpec("tag1");
spec.setContent(R.id.fragment1);
spec.setIndicator("View Raves");
tabs.addTab(spec);
spec=tabs.newTabSpec("tag2");
spec.setContent(R.id.fragment2);
spec.setIndicator("My Badges");
tabs.addTab(spec);
tabs.setCurrentTab(0);
Revise this Paste