0

我需要一些帮助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...

4

1 回答 1

1

我回答我自己的问题。所以,我不得不使用“javaclass.this”而不是“context”

于 2013-01-05T12:28:50.703 回答