My activity receives two intent
from two different activity
.
One intent
contains int
value with extras and another contains String
. I want to distinguish both intent
in receiver activity.
Is there any way to check if the received intent has int
value in extras or String
?
Please don't suggest to use startActivityForResult()
to receive multiple intents in same activity.