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.

Possible Duplicate:
start Activity from an other Activity with Tabs

I have a TabHost containing 3 tabs. Having Act1, Act2, Act3 for 3tabs. Now i want to start a new activity (say Act4) onclick of a button in Act1. I should see the tabs when I'm in Act4. How can i start a new activity from my tab for a result? Please help me out.

 startActivityForResult(new Intent(Act1.this, Act4.class), CONSTANT);

The above line taking me to the Act4 screen but its not showing tabs. What should i do to see the tabs in Act4 and return back to Act1 with a result?

share|improve this question
2  
so what have you done so far? could you please post your code? – artsylar Dec 6 '12 at 8:25
1  
Please post some code – Chen Kinnrot Dec 6 '12 at 8:26
@ArpitSrivastava If my answer is helping you then please accept it. – Dipak Keshariya Dec 12 '12 at 11:51

marked as duplicate by Dipak Keshariya, IceMAN, Matthieu, Peter O., Bill the Lizard Jan 10 at 15:47

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

I think you can try Fragments

developer.android.com/guide/components/fragments.html

share|improve this answer

Please see below link for complete example, it will solve your problem.

Start Activity from an other Activity with Tabs

share|improve this answer

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