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...





arrow
arrow
    全站熱搜

    小彬彬 發表在 痞客邦 留言(0) 人氣()