Skip to content

Instantly share code, notes, and snippets.

@Aiur3908
Created November 24, 2015 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Aiur3908/75a64389c95fe5ecada6 to your computer and use it in GitHub Desktop.
Save Aiur3908/75a64389c95fe5ecada6 to your computer and use it in GitHub Desktop.
private void startNextPage(){
Intent intent = new Intent();
Bundle bundle = new Bundle();
bundle.putString("Name" , "Tom");
bundle.putInt("Year", 12);
intent.putExtra("Bundle" , bundle);
intent.setClass(this , Main2Activity.class);
startActivity(intent);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment