I am trying to write some text in the body of my tabs on android this is the following code that I have.
intent = new Intent().setClass(this, Tab1.class);
spec = tabHost.newTabSpec("songs").setIndicator("Information",
res.getDrawable(R.drawable.ic_tab_artists))
.setContent(R.id.tab1Layout);
tabHost.addTab(spec);
Can someone tell me what to do in order for me to add some text to the body of the tab?