我想在另一个片段中使用我自己的数据类型的 ArrayList,我用一个包对其进行测试,并将列表与 putParcelableArrayList 方法放在一起,但它没有用。
任何想法为什么,或更好的建议?
片段 1:
Bundle arguments = new Bundle(); arguments.putParcelableArrayList("BESTAND", (ArrayList<Bestand>) palBestand);
片段 2:
ArrayList<Bestand> bestandsliste = (ArrayList<Bestand>) getArguments().getParcelableArrayList("BESTAND");
www说
相关分类