close
Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
Bundle b = new Bundle();
b.putInt("key", 1); //Your id
intent.putExtras(b); //Put your id to your next Intent
startActivity(intent);
finish();
Bundle b = getIntent().getExtras();
int value = b.getInt("key");
http://cookiesp.pixnet.net/blog/post/84190702-andr...
全站熱搜