我想實現一個片段佈局。我有一個活動,服務器作爲SplashScreen &從Web獲取一些數據並創建我的自定義對象的ArrayList。將活動傳遞給ListFragment?
通常如果我使用的是ListView,我只需要執行以下操作。
private ArrayList<Articles> articles;
private void isComplete() {
Intent intent = new Intent(SplashScreen.this, ListActivity.class);
intent.putExtra("data", articles);
startActivity(intent);
finish();
}
如何將相同的數據傳遞給片段?我非常感謝你的幫助。
感謝它的工作,但靜態變量佔用內存空間!任何其他方式可能? – Nischal 2015-09-09 05:54:07
@Nischal是的,你可以參考http://stackoverflow.com/questions/14997855/pass-the-arraylist-with-particular-id-from-one-class-to-another-in-android – 2015-09-09 07:14:19