即使适配器是null
,我也想更新我的列表,但我不知道该怎么做。
当我执行以下代码时,我的应用程序崩溃:
ProductAdapter adapter = new ProductAdapter(context, R.layout.listrow, yal);
if(adapter.getCount()>0){
lv.setAdapter(adapter);
}else{
lv.setAdapter(null);
}
adapter.notifyDataSetChanged();
lv.invalidateViews();