android 中不同的上下文是怎么回事?

发布于 2024-11-15 01:45:04 字数 148 浏览 2 评论 0原文

myClass.this 和 getBaseContext 有什么区别?当我将 AlertDialog 放入不同的类中并实例化它时,如果我使用父类中的 myClass.this ,我只能显示该对话框。我认为 getBaseContext() 做了同样的事情,但我想不是。我缺少什么?

What's the difference between myClass.this and getBaseContext? When I put an AlertDialog in a different class and instantiate it, I can only get the dialog to show if I use myClass.this from the parent class. I thought getBaseContext() did the same thing but I guess not. What am I missing?

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

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

发布评论

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

评论(2

囍笑 2024-11-22 01:45:04

“this”指的是您所在的方法,“getBaseContext/getApplicationContext”指的是您所在的 Activity。

"this" refers to what method you're in, and "getBaseContext/getApplicationContext" refers to the Activity you're in.

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