我在我的活動中有一個對象列表,我想將該對象列表傳遞給另一個活動以在該活動中生成列表視圖,這可能嗎?如何在android中將對象列表從一個活動傳遞給另一個活動?
對於簡單的字符串值,我用下面的代碼...
Intent intentprint=new Intent(OrdersScreen.this,PrintTemplate.class);
String pbal=String.valueOf(Balance.getText());
intentprint.putExtra("Branch", bname);
intentprint.putExtra("Party", pname);
intentprint.putExtra("Balance",pbal);
intentprint.putExtra("Billvalue", bal);
startActivity(intentprint);
任何幫助將不勝感激..
可能的重複[如何從一個Android活動發送對象到另一個使用Intents?](http://stackoverflow.com/questions/2139134/how-to-send-an-object-from-one-android -activity-to-another-using-intents) – Kiran
這裏有類似的問題,請看看它。 http://stackoverflow.com/questions/14333449/passing-data-through-intent-using-serializable/28673100#28673100 –