gpt4 book ai didi

java - 不能在 Fragment 中使用 Toothpick.inject

转载 作者:行者123 更新时间:2023-11-29 02:29:46 30 4
gpt4 key购买 nike

尝试在 fragment 中使用 Toothpick DI 时出现奇怪的错误:

toothpick.registries.NoFactoryFoundException: No factory could be found for class android.app.Application. Check that the class has either a @Inject annotated constructor or contains @Inject annotated members. If using Registries, check that they are properly setup with annotation processor arguments.

我的 fragment :

public class ApplicationMenu extends SidebarFragment {

@Inject ApplicationsService applicationsService;
@Inject SectionsService sectionsService;

private EventBus bus = EventBus.getDefault();

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Toothpick.inject(this, Toothpick.openScope(LauncherActivity.class)); // <- Erroring here
}

...

}

Activity :

public class LauncherActivity extends SidebarActivity {

...

@Override
protected void onCreate(Bundle savedInstanceState) {

Scope scope = Toothpick.openScopes(LauncherApplication.class, LauncherActivity.class);
scope.bindScopeAnnotation(LauncherActivitySingleton.class);
scope.installModules(new LauncherActivityModule(this));
super.onCreate(savedInstanceState);
Toothpick.inject(this, scope);

setContentView(R.layout.activity_launcher);
ButterKnife.bind(this);

...
}

...

}

奇怪的是我只在 fragment 中得到错误,所有在其他地方(ViewRenderer、适配器、服务等)的注入(inject)工作正常没有问题

最佳答案

我想通了。我错误地关闭了我的一项服务中的应用程序范围。该服务在 fragment 中使用,导致错误。

不幸的是,错误消息没有提供任何有用的信息,找到问题的唯一方法是分析和调试所有代码。

所以使用牙签 di 你必须非常小心范围生命周期。

关于java - 不能在 Fragment 中使用 Toothpick.inject,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50185330/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com