是否有像 RoboGuice for Dagger 这样的 Android 库?

Is there an Android library like RoboGuice for Dagger?

我正在将我的应用程序从 RoboGuice 切换到 Dagger。 RoboGuice 有一个很好的特性,你可以在其中注入原生组件(@Inject Context mContext 给你一个 Context 对象)。我想知道是否有人知道可以执行此操作的 Dagger 或其他 DI 库的扩展。谢谢!

根据this thread on the Dagger issues list, you can accomplish this behavior but you need to inject it via a module, as discussed here

是的,使用 Dagger 太容易了,所以不需要这个开箱即用的功能。

此外,您可以具体控制注入哪个上下文,在其范围内注入activity上下文真的很有用。