Context context =getBaseContext(); 我在Activity类下面调用。为什么在onCreate方法里面再调用context就是空了?

发布于 2021-11-22 20:36:17 字数 1421 浏览 348 评论 3

方法一 可以
public class DelCacheActivity extends MessageActivity {
    
    private static String Size = null;
    Context context;
    DelCacheManager dcm = new DelCacheManager();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	init("设置", "设置");	
	setContentView (R.layout.shezhi);
	context = getBaseContext();
	TextView textView = (TextView) this.findViewById(R.id.delcache);
	textView.setOnClickListener(new ButtonClickListener());
    }
}
方法二,方法二为什么不行?
public class DelCacheActivity extends MessageActivity {
    
    private static String Size = null;
    Context context = getBaseContext();;
    DelCacheManager dcm = new DelCacheManager();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
	super.onCreate(savedInstanceState);
	init("设置", "设置");	
	setContentView (R.layout.shezhi);
	
	TextView textView = (TextView) this.findViewById(R.id.delcache);
	textView.setOnClickListener(new ButtonClickListener());
    }
}


Context context =getBaseContext(); 我在Activity类下面调用。为什么在onCreate方法里面再调用context就是空了?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

贱贱哒 2021-11-28 16:26:16

没人回复呢!

策马西风 2021-11-28 08:30:47

作用域生命周期的问题哈

狠疯拽 2021-11-26 05:48:18

onCreate函数里是创建Activity,context是Activity的上下文,没有创建Activity,哪来的context

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文