@Singletonで注釈が付けられたSettingsクラスを作成しました。このクラスは私のRoboActivitiesに正常に注入されています。ただし、POJO(プレーンオールドJavaオブジェクト)に挿入しようとすると、nullポインター例外が発生します(つまり、挿入されません)。このPOJOは別のスレッドでインスタンス化されます(関連性があるかどうかはわかりません)。最後に、クラスのインスタンスを注入する場合、クラスのデフォルトコンストラクターを明示的に作成する必要がありますか?
助けてくれてありがとう、
トーマス
質問する
1701 次
2 に答える
2
私の悪い点は、問題は、次を使用して別のクラスに属するPOJOをインスタンス化していないことでした。
RoboGuice.getInjector(context).injectMembers(this);
于 2013-01-03T12:33:50.917 に答える
0
このリンクは、roboguiceを使用したシングルトンの適切な説明です。
これは、非常に重要な警告/アンチパターンを説明しています。
@Singleton
public class Astroboy {
// Because Astroboy is a Singleton, we can't directly inject the current Context
// since the current context may change depending on what activity is using Astroboy
// at the time. Instead, inject a Provider of the current context, then we can
// ask the provider for the context when we need it.
// Vibrator is bound to context.getSystemService(VIBRATOR_SERVICE) in RoboModule.
// Random has no special bindings, so Guice will create a new instance for us.
@Inject
Provider<Context> contextProvider;
@Inject
Vibrator vibrator;
@Inject
Random random;
public void say(String something) {
// Make a Toast, using the current context as returned by the Context
// Provider
Toast.makeText(contextProvider.get(),
"Astroboy says, \"" + something + "\"", Toast.LENGTH_LONG)
.show();
}
public void brushTeeth() {
vibrator.vibrate(
new long[] { 0, 200, 50, 200, 50, 200, 50, 200, 50, 200, 50,
200, 50, 200, 50, 200, 50, 200, 50, 200, 50, 200, 50, },
-1);
}
public String punch() {
final String expletives[] = new String[] { "POW!", "BANG!", "KERPOW!",
"OOF!" };
return expletives[random.nextInt(expletives.length)];
}
}
于 2013-12-28T11:33:42.703 に答える