Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

3 Answers

up vote 0 down vote accepted

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

share|improve this answer
Can you provide me an example. please thanks for the help. – James Nov 23 '11 at 9:32
There is nothing in this link – James Nov 23 '11 at 10:06
Doesn't it download sample project? – Drax Nov 23 '11 at 10:07
No It didn't. Sorry – James Nov 23 '11 at 10:20
show 2 more comments

ActivityGroup is deprecated, try to use Fragment and FragmentManager

share|improve this answer

Use Android ActivityGroup within TabHost to show different Activity

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.