Dhaval2404

Pass data between activity

Apr 10th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. In Activity1:
  2. Intent intent = new Intent(add_team.this, DisplayTeam.class);
  3. intent.putExtra("TEAM", id);
  4. startActivity(intent);
  5.  
  6. In Activity2:
  7. long id = getIntent().getLongExtra("TEAM", 0l);
  8. DatabaseHelper db = new DatabaseHelper(this);
  9. team = db.getTeam(id);
Add Comment
Please, Sign In to add comment