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!
You don't. You have just one, but they should have different codes, that's how you can differentiate if the result is from Calendar view or Google Calendar or something else.