我需要一些帮助Asynctask
和自定义适配器。我有一个asynctask
通过解析获取数据的方法。然后我必须把它们放在一个ListView
. 我创建了一个自定义适配器,但我对上下文有一些问题。我确信这有一个非常简单的解决方案,但我无法理解实际的上下文是什么!eclipse中说明了这个问题:
protected void onPostExecute(final List<String> list) {
ListView listView = (ListView)findViewById(R.id.listavvisi);
CustomAdapter adapter = new CustomAdapter(**this**, R.layout.rowcustom, list);
listView.setAdapter(adapter);
我把我的名单传给customadapter
public class CustomAdapter extends ArrayAdapter<Avviso> {
private Context context;
public CustomAdapter(**Context** **context**, int textViewResourceId, List<Avviso> Strings) {
super(context, textViewResourceId, Strings);
}
调用 a 时我需要什么上下文New Customadapter...
?