如何在 Android 中使用 RoboGuice 注入上下文?

发布于 2024-12-02 22:42:07 字数 228 浏览 0 评论 0原文

我想将我的上下文注入到我的实用程序类中,我已经看到 使用静态字段的示例,有没有什么方法可以在没有静态字段的情况下做到这一点?

I would like to inject my context to my Utility classes, I have seen examples using Static fields, Are there any ways to do it with out static fields?

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

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

发布评论

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

评论(2

浮华 2024-12-09 22:42:07

我倾向于使用 Provider 在需要时注入上下文。

public class MyClass
{
    private Provider<Context> contextProvider;

    @Inject
    public MyClass(Provider<Context> contextProvider)
    {
        this.contextProvider = contextProvider;
    }

    public doSomething()
    {
        Context c = contextProvider.get();
    }
}

I tend to use a Provider to inject the context when I need it.

public class MyClass
{
    private Provider<Context> contextProvider;

    @Inject
    public MyClass(Provider<Context> contextProvider)
    {
        this.contextProvider = contextProvider;
    }

    public doSomething()
    {
        Context c = contextProvider.get();
    }
}
你如我软肋 2024-12-09 22:42:07

您可以通过多种方式执行此操作,将上下文传递给实用程序类或使用服务定位器或使用 @Inject 属性注释实用程序类。请在此处查看更多详细信息。

You can do this in several ways, Pass the context to Utility class or use a service locator or anotate the utility class with @Inject attribute. See more details here.

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