リストビューを使用した私のフラグメント
@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.What I have done wrong? で確認できます。