I found this custom TabWidget layout on the internet. The problem is, I dont know how to insert content into the tabs. Can someone help on this? Say I have activity1, activity2 and activity3. Heres the code:
public class MainActivity extends Activity {
private TabHost mTabHost;
private void setupTabHost() {
mTabHost = (TabHost) findViewById(android.R.id.tabhost);
mTabHost.setup();
}
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setupTabHost();
mTabHost.getTabWidget().setDividerDrawable(R.drawable.tab_divider);
setupTab(new TextView(this), "EASY");
setupTab(new TextView(this), "MEDIUM");
setupTab(new TextView(this), "INTENSE");
}
private void setupTab(final View view, final String tag) {
View tabview = createTabView(mTabHost.getContext(), tag);
TabSpec setContent = mTabHost.newTabSpec(tag).setIndicator(tabview).setContent(new TabContentFactory() {
public View createTabContent(String tag) {return view;}
});
mTabHost.addTab(setContent);
}
private static View createTabView(final Context context, final String text) {
View view = LayoutInflater.from(context).inflate(R.layout.tabs_bg, null);
TextView tv = (TextView) view.findViewById(R.id.tabsText);
tv.setText(text);
return view;
}
}
You put content into activities by making their own files, declaring them in manifest and putting in their onCreate the
setContentView(R.layout.activitylayout);
. And if the content is static, it is wholely described in the appropriate layout.Ok, understood. then return as
view
here publicView createTabContent(String tag) {return view;}
that layout that you want to place there. Some listViewOfMyPictures or things.