Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2. * Listener for Intent Button
  3. * @param view
  4. */
  5. public void intentClick(View view){
  6.  
  7.     Intent intent=new Intent(this,IntentActivity.class);
  8.  
  9.     // data send in pair value, (key and value)
  10.     intent.putExtra("firstname",((EditText)findViewById(R.id.editText_firstname)).getText().toString());
  11.     intent.putExtra("lastname",((EditText)findViewById(R.id.editText_lastname)).getText().toString());
  12.  
  13.     startActivity(intent);
  14. }