Skip to content

Instantly share code, notes, and snippets.

@Aiur3908
Created November 24, 2015 14:48
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/785039a19b65f4531923 to your computer and use it in GitHub Desktop.
Save Aiur3908/785039a19b65f4531923 to your computer and use it in GitHub Desktop.
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main2);
//取得上一頁傳過來的 Key為Name的 Value
String Name = getIntent().getStringExtra("Name");
//取得上一頁傳過來的 Key為Year的 Value , 若是沒值則為0
int Year = getIntent().getIntExtra("Year" , 0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment