0

我正在课堂上进行扩展,AsyncTask但是我从另一个活动中传递了一个上下文。所以我尝试了这个:

        listview = (ListView) findViewById(R.id.listview1);

错误:

The method findViewById(int) is undefined for the type loadSomeStuff

我也试过这个:

        listview = (ListView) ctx.findViewById(R.id.listview1);

错误:

The method findViewById(int) is undefined for the type Context

我怎样才能克服这个错误?

4

1 回答 1

0

要么View.findViewById()要么Activity.findViewById()

尝试

listview = (ListView) ((Activity)ctx).findViewById(R.id.listview1);

资源

于 2013-08-03T22:03:46.683 回答