我在我的活动中创建了一个列表视图ListView listView = new ListView(context);
,我编写了MyCustomAdapter,它扩展了BaseAdaptor。将此自定义适配器设置为我上面创建的listView.setAdapter(myCustomAdpObj)
对象。现在我想要运行时添加/删除此listView中的元素。我没有找到如何执行此操作的方法?任何建议?谢谢
答案 0 :(得分:2)
从您的商品数组中删除或添加商品并调用适配器的notifyDataSetChanged()
答案 1 :(得分:1)
删除/添加元素并使用它。
((BaseAdapter) listView.getAdapter()).notifyDataSetInvalidated();