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

如何在Android中使用RoboGuice注入上下文?,第1张

概述我想将我的上下文注入我的实用程序类,我已经看到examples使用静态字段,有没有办法用静态字段来做?解决方法:我倾向于在需要时使用Provider来注入上下文.publicclassMyClass{privateProvider<Context>contextProvider;@InjectpublicMyClass(Provider<Context

我想将我的上下文注入我的实用程序类,我已经看到examples使用静态字段,有没有办法用静态字段来做?

解决方法:

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

public class MyClass{    private ProvIDer<Context> contextProvIDer;    @Inject    public MyClass(ProvIDer<Context> contextProvIDer)    {        this.contextProvIDer = contextProvIDer;    }    public doSomething()    {        Context c = contextProvIDer.get();    }}
总结

以上是内存溢出为你收集整理的如何在Android中使用RoboGuice注入上下文?全部内容,希望文章能够帮你解决如何在Android中使用RoboGuice注入上下文?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/web/1114217.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-29
下一篇 2022-05-29

发表评论

登录后才能评论

评论列表(0条)

保存