1

I created a tabbed application in which I have three tabs. In the first activity I am opening a class named Home.class and inside the Home.class I want to start another activity that should open in that tab itself is it possible. Please help.

Dinesh Prajapati
  • 9,274
  • 5
  • 30
  • 47
James
  • 13,891
  • 26
  • 68
  • 93

3 Answers3

2

ActivityGroup is deprecated, try to use Fragment and FragmentManager

notenking
  • 418
  • 3
  • 12
0

To start multiple Activity in one tab, you need to extend your tab with ActivityGroup. and when are you starting new Activity you need to use startChildActivity

Dinesh Prajapati
  • 9,274
  • 5
  • 30
  • 47
0

Use Android ActivityGroup within TabHost to show different Activity

ricko sam
  • 11
  • 2