Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // call the value by using the same key used to set the value
  2. String firstname= getIntent().getStringExtra("firstname");
  3. String lastname= getIntent().getStringExtra("lastname");
  4.  
  5. ((TextView) findViewById(R.id.textView_activity_display)).setText(
  6.         String.format("Write at Activity : My name is %s %s.",firstname,lastname)
  7. );