gpt4 book ai didi

android - baseAdapter 类中的上下文

转载 作者:行者123 更新时间:2023-11-29 00:31:45 27 4
gpt4 key购买 nike

有没有办法通过 getApplicationContext() 获取 BaseAdapter 类中的 context

我需要这个,因为我要从 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com