Transfer data from one Activity to Another Activity Using Intents

后端 未结 8 1603
花落未央
花落未央 2020-11-29 06:36

I would like to be able to transfer data from one activity to another activity. How can this be done?

8条回答
  •  悲&欢浪女
    2020-11-29 07:20

    Passing data from one activity to other in android

    Intent intent = new Intent(context, YourActivityClass.class);
    intent.putExtra(KEY, );
    
    startActivity(intent);
    

    Retrieving bundle data from android activity

    Intent intent = getIntent();
      if (intent!=null) {
      String stringData= intent.getStringExtra(KEY);
      int numberData = intent.getIntExtra(KEY, defaultValue);
      boolean booleanData = intent.getBooleanExtra(KEY, defaultValue);
      char charData = intent.getCharExtra(KEY, defaultValue);   }
    

提交回复
热议问题