从对象而不是类中创建意图

发布于 2024-11-07 22:10:20 字数 334 浏览 0 评论 0原文


我试图通过发送一个对象而不是一个类来表达意图。
相反:

Intent intent = new Intent(EXGPS.this, LocationGPS.class);

我需要:

LocationGPS gps = new LocationGPS(this);
Intent intent = new Intent(EXGPS.this, gps);

我必须以某种方式做到这一点,因为我无法传递正在获取上下文 c 的 LocationGPS 构造函数。
预先感谢您:-)

I'm trying to make an intent by sending an object instead of a class.
instead:

Intent intent = new Intent(EXGPS.this, LocationGPS.class);

I need:

LocationGPS gps = new LocationGPS(this);
Intent intent = new Intent(EXGPS.this, gps);

I have to do it in some way cause I cant pass my LocationGPS contructor that is getting Context c.
thank you in advance :-)

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

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

发布评论

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

评论(1

寂寞清仓 2024-11-14 22:10:20

不要那样做。设置一个 Global 类,它具有对 ApplicationContext 的静态引用。直接从 LocationGPS 类引用该静态字段。

Don't do it that way. Set up a Global class which has a static reference to your Application's Context. Reference that static field directly from your LocationGPS class.

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