Transfer data from one Activity to Another Activity Using Intents

后端 未结 8 1609
花落未央
花落未央 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:21

    Through the below code we can send the values between activities

    use the below code in parent activity

    Intent myintent=new Intent(Info.this, GraphDiag.class).putExtra("", value);
    startActivity(myintent);
    

    use the below code in child activity

    String s= getIntent().getStringExtra();
    

提交回复
热议问题