使用 roboguice 而不扩展 Activity

发布于 2024-12-07 22:28:19 字数 64 浏览 0 评论 0原文

有没有一种方法可以在不使用 RoboActivity 扩展 Activity 类的情况下使用 roboguice。

Is there a way to use roboguice without extending Activity class with RoboActivity.

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

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

发布评论

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

评论(2

遗失的美好 2024-12-14 22:28:19

是的。使用尚未进入测试版的 1.2-SNAPSHOT 会更容易。要使用 1.2,只需将以下内容添加到 onCreate()、onContentChanged() 和 onDestroy() 中。如果您不使用 roboguice 事件,则不需要有关 EventManager 的信息:

@Override
protected void onCreate(Bundle savedInstanceState) {
    RoboGuice.getInjector(this).injectMembersWithoutViews(this);
    super.onCreate(savedInstanceState);
}

@Override
public void onContentChanged() {
    super.onContentChanged();
    RoboGuice.getInjector(this).injectViewMembers(this);
}


@Override
protected void onDestroy() {
    try {
        RoboGuice.destroyInjector(this);
    } finally {
        super.onDestroy();
    }
}

如果您使用 RoboGuice 1.1.x(最新的稳定版本),则原理是相同的,但调用略有不同。看一下 1.1 RoboActivity 源 查看您需要进行哪些调用。

Yes. It's easier with the 1.2-SNAPSHOT which isn't yet in beta. To use 1.2, just add the following to your onCreate(), onContentChanged(), and onDestroy(). You don't need the bits about the EventManager if you're not using roboguice events:

@Override
protected void onCreate(Bundle savedInstanceState) {
    RoboGuice.getInjector(this).injectMembersWithoutViews(this);
    super.onCreate(savedInstanceState);
}

@Override
public void onContentChanged() {
    super.onContentChanged();
    RoboGuice.getInjector(this).injectViewMembers(this);
}


@Override
protected void onDestroy() {
    try {
        RoboGuice.destroyInjector(this);
    } finally {
        super.onDestroy();
    }
}

If you're using RoboGuice 1.1.x (the latest stable build), then the principle is the same but the calls are slightly different. Take a look at the 1.1 RoboActivity source to see which calls you need to make.

凉栀 2024-12-14 22:28:19

它可以工作,但您必须实现 RoboContext 并声明它

protected HashMap<Key<?>,Object> scopedObjects = new HashMap<>();

It works, but you must implement RoboContext and declare this

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