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'm using a Fragment that loads an Image into a ImageView.

I want to change that image with startActivityForResult() but when I finish that Activity and go back to the Fragment,the Fragment reloads the first image again.

Probably because of the onStart() method.

How can I avoid the Fragment to reload after onActivityResult()?

share|improve this question
Can you post some code? – jsmith Aug 21 '12 at 16:13

1 Answer

up vote 1 down vote accepted

I found out what the problem was.

The fragment loads in the information in the onStart() method. I had a look at the fragment lifecycle and found out that I had to load the information in the onActivityCreated() method.

This way the view is already created and I can refer to my xml-objects. Check out this image that explains the fragment lifecycle: http://developer.android.com/images/activity_fragment_lifecycle.png

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.