Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. Intent intent = new Intent(Activity_Origen.this, Activity_Destino.class);
  2. intent.putExtra("parametro", "string");
  3. startActivity(intent);
  4.  
  5. getIntent().getExtras().getString("parametro");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement