I have one activity where i use two onActvityResults
one for the CalendarView
:
@Override
protected void onActivityResult(int requestCode, int responseCode, Intent intent)
one for the retrieving of events in Google Calendar:
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
How do i have these two in one activity? Thanks!
It seems you have not properly understood the concept! This might help you to understand onActivityResult.
By using
startActivityForResult(Intent intent, int requestCode)
you can start another Activity and then receive a result from that Activity in theonActivityResult()
method.SoonActivityResult()
is from where you start the another Activity.onActivityResult(int requestCode, int resultCode, Intent data)
check the params here. request code is there to filter from where you got the result. so you can identify different data using their requestCodes!Example
AnotherActivity
<- This the the one we use to send data toMainActivity
Note : Now check in
MainActivity
youstartActivityForResult
there you specify aREQUEST_CODE
. Let's say you want to call three different Activities to get results.. so there are threestartActivityForResult
calls with three different REQUEST_CODE's. REQUEST_CODE is nothing but a unique key you specify in your activity to uniquely identify yourstartActivityForResult
calls.Once you receive data from those Activities you can check what is the REQUEST_CODE, then you know ah ha this result is from this Activity.
It's like you send mails to your lovers with a colorful covers and ask them to reply in the same covers. Then if you get a letter back from them, you know who sent that one for you. awww ;)