Using intents for passing data

前端 未结 5 1022
庸人自扰
庸人自扰 2020-12-12 07:58

How do you send data from one activity to another using intents.

(Note this is a two-part question, the sending and the receiving).

I\'m creating a form, a

5条回答
  •  不思量自难忘°
    2020-12-12 08:25

    To send from the Activity

    Intent myIntent = new Intent(First.this, Second.class);
        myIntent.putExtra("name","My name is");
        startActivity(myIntent);
    

    To retrieve in the secod

    Bundle bundle = getIntent().getExtras();
               String name=bundle.getString("name");
    

提交回复
热议问题