문제

I tried to inject DispatchAsync in Presenter class's onBind() method.

@Inject
DispatchAsync dispatchAsync;

But, its null while I try to invoke execute inside dispatchAsync.onBind() method.

I need to get details from server while loading.

What can I do for this or can I use this statement in onbind() method or any other place in presenter.

Thanks in Advance, Bennet.

도움이 되었습니까?

해결책

You should inject it like this

private final DispatchAsync dispatchAsync;

@Inject
Presenter(...., DispatchAsync dispatchAsync) {
   super(...);

   this.dispatchAsync = dispatchAsync;
}

This way you get the dispatchAsync injected in your presenter.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top