How to pass a boolean between intents

前端 未结 3 1186
轻奢々
轻奢々 2020-12-06 00:43

I need to pass a boolean value to and intent and back again when the back button is pressed. The goal is to set the boolean and use a conditional to prevent multiple launche

3条回答
  •  春和景丽
    2020-12-06 01:23

    Set intent extra(with putExtra):

    Intent intent = new Intent(this, NextActivity.class);
    intent.putExtra("yourBoolName", true);
    

    Retrieve intent extra:

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        Boolean yourBool = getIntent().getExtras().getBoolean("yourBoolName");
    }
    

提交回复
热议问题