我的片段與列表視圖notifydatasetchanged內部片段與列表視圖
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
View local=inflater.inflate(R.layout.allist,container,false);
ListView all=(ListView) local.findViewById(R.id.alllistView);
String link=getString(R.string.mainlink);
al=new ArrayList<MyItem>();
ArrayAdapter<MyItem> ad=new ArrayAdapter<MyItem>(getActivity(), android.R.layout.simple_list_item_1,al);
rlt=new RefreshLinkTask();
rlt.execute(new String[]{link});
all.setAdapter(ad);
return local;
我的問題是我不能使用notifyDataSetChanged()到列表視圖。它顯示的方法notifyDataSetChanged()對於ListView類型是未定義的。 AsyncTask被執行,可以在logcat上看到。我做錯了什麼?
你如何調用'notifyDataSetChanged()'?. – Raghunandan
我這樣稱呼all.notifyDataSetChanged() – MDEVLP