|
how to call a chain of activities from TabActivity in android
Hi All,
I am very new to Android application development. I have one scenario that is,
I have one TabActivity with this I am forming 4 tabs. Each tab will call again different Activities again. This is i am able to do with bellow code.
TabHost tag = getTabHost();
tag.addTab(tag.newTabSpec("tab_test4").setIndicator("TAB 4").setContent(new Intent(this, TabTwoActivity.class)));
Again "TabTwoActivity" will call one more activity, here the new activity which is called by "TabTwoActivity" is replacing total tab view.
I want to display the new activity under tabs only.
How can i reach this functionality . please help me in this.
thanks in advance.
malli
|