我在ListActivity中的構造函數裡傳遞一些變量,通過下面的代碼開始活動: startActivity(new Intent (this, viewContacts.class));
現在想使用相似的代碼, 把兩個字符串傳遞到構造函數,然後開始執行Intent。怎麼實現呢?
為了傳遞參數,要創建新的意圖,放置參數映射:
Intent myIntent = new Intent(this, NewActivityClassName.class);
myIntent.putExtra("firstKeyName","FirstKeyValue");
myIntent.putExtra("secondKeyName","SecondKeyValue");
startActivity(myIntent);
為了獲得參數值,你必須在同一意圖中調用get[type]Extra() 方法
Intent myIntent= getIntent(); // gets the previously created intent
String firstKeyName = intent.getStringExtra("firstKeyName"); // will return "FirstKeyValue"
String firstKeyName = intent.getStringExtra("firstKeyName"); // will return "SecondKeyValue"
如果參數是整型,要使用getIntExtra()方法。