是否可以通过context
在BaseAdapter
类中获取getApplicationContext()
?
我需要这个,因为我要从url加载图像。在这里我使用context
:
这是在扩展BaseAdapter
的类中
ImageLoader imgLoader = new ImageLoader(getApplicationContext());
最佳答案
在扩展/实现时将其传递给构造函数:
public class MyAdapter extends SomeBaseAdapter{
private final Context mcontext;
public MyAdapter(Context c){
mContext = c;
}
}
关于android - baseAdapter类中的上下文,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15199281/