我想傳遞一個Intent
多個數據項:將多個數據傳遞給活動?
if (strActStat == "Sedentary") {
// passactStat.putString("keySedentary", strActStat);
// passSeden.putString("keyMale", gender);
i = new Intent(CalorieTrackerTargetWeight.this, TargetWeightResults.class);
i.putExtra("keyGender", gender);
i.putExtra("keyAct", strActStat);
//i.putExtra("keyAct", strActStat);
startActivity(i);
}
爲什麼不這項工作?爲什麼我不能在一個Intent
中傳遞多個項目?
爲什麼你不能? – Egor
您可以傳遞多個附加內容。 –
其實你正在把2個不同的數據(性別和strActStat)。您不能使用相同的密鑰添加數據! – RvdK