Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have an Activity in which I use startActivityForResult(intent,634). If I using it from activity, requestCode in onActivityResult() is Ok. But if I use startActivityForResult(intent,634) from my DialogFragment in this Activity, I'm getting another requestCode, something like 66170. So why its happens?

share|improve this question

1 Answer

up vote 2 down vote accepted

It was a stupid question. But for anyone else who runs into the same "problem" I'm posting the answer.

It's happens because if you use startActivityForResult from the dialog, in onActivityResult you get the requestCode of the dialog. Not from your another Activity. And if you want to get right requestCode, you should use getActivity().startActivityForResult(intent,requestCode) in DialogFragment.

share|improve this answer
2  
There is no such thing as stupid questions – vodich Dec 1 '12 at 13:31

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.