Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我可以更新最初传递给 arrayAdapter 的构造函数的数组,并调用 notifyDataSetChanged。
我想知道是否可以将新的arraylist 插入适配器?
简单的:
mAdapter.clear(); mAdapter.addAll(collection);
此外,请添加您可以调用的单个元素,mAdapter.add(element);而不必保留对传递给构造函数的 Array 的引用。
mAdapter.add(element);