如何在活動之間發送節點列表?我有一個應用程序,其中有四個屏幕與四個活動。在第一個活動中,我解析url以獲取節點列表。點擊按鈕時,我需要開始新的活動並將節點列表發送到第二個活動。
我試過這樣在活動之間發送節點列表
Intent intent = new Intent(this, SecondActivity.class);
Bundle bundle = new Bundle();
bundle.putString("KEY","NodeList");
intent.putExtras(bundle);
startActivity(intent);
請註明'NodeList' – overbet13
NodeList接口提供對節點的有序集合的抽象意義,沒有定義或約束如何收集是實施特德。 DOM中的NodeList對象是活動的。 http://developer.android.com/reference/org/w3c/dom/NodeList.html – ipauler