Check if extras are set or not

前端 未结 5 1379
余生分开走
余生分开走 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:12

    I would use this solution in your case.

    String extraStr;
        try {
            extraStr = getIntent().getExtras().getString("extra");
        } catch (NullPointerException e ) {
            extraStr = "something_else";
        }
    

提交回复
热议问题