Check if extras are set or not

前端 未结 5 1387
余生分开走
余生分开走 2020-12-13 01:28

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):<

5条回答
  •  孤城傲影
    2020-12-13 02:06

    if (this.getIntent().getExtras() != null && this.getIntent().getExtras().containsKey("yourKey")) {
       // intent is not null and your key is not null
    }
    

提交回复
热议问题