Is there any way to check if an extra has been passed when starting an Activity?
I would like to do something like (on the onCreate() in the Activity):<
onCreate()
if (this.getIntent().getExtras() != null && this.getIntent().getExtras().containsKey("yourKey")) { // intent is not null and your key is not null }