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 have been using the following... https://bitbucket.org/owentech/testswipeab/src/eb30782019b2/src/com/owentech/testswipeab/

as an example for implementing an android app with swipe-able tabs and fragments (replacing the dummy fragments w/ my own) This works well for me except for one issue. As you swipe between tabs, the fragment's onresume method is not getting called. In fact, the onresume methods are only getting called when the app first starts. I would like the appropriate onresume method to get called for each time the tab is switched to that fragment.

Any suggestions on how to modify this sample code to achieve this would be appreciated.

share|improve this question

1 Answer

Fragment lifecycle is almost identical to common Activity lifecycle - an instance is being created once but can be deactivated or reactivated multiple times. So if you have code that needs to be executed each time the same fragment instance is reactivated or deactivated, then move that code into onResume or onPause respectively.

onCreateView is called in between the calls onCreate and onActivityCreated - hence only once per fragment lifecycle.

See the documentation link http://developer.android.com/reference/android/app/Fragment.html

share|improve this answer
Ah you're right. I should have that kind of code in my onResume. However, similarly, the onResmues are not being called when I switch tabs. I think there is something missing from my tablistener. – Bobby Oct 8 '12 at 0:51
1  
Well, TabHost is a regular View itself, it does not have the lifecycle handlers, so you shouldn't expect lifecycle methods to be called (in a regular way at least). If I were you, I wouldn't use TabHost at all, rather if you need tabulated view implement one yourself. I personally find it quite a bit tricky to follow the actions in a TabHost. – Nar Gar Oct 8 '12 at 2:04

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.