不幸的是,看起來像這樣的情況沒有抽象的解決方案,所以我必須在每個請求中添加這樣的代碼。
getSpiceManager().execute(r, new RequestListener<CountProfiles>() {
@Override
public void onRequestFailure(SpiceException spiceException) {
if (act.getSupportFragmentManager().findFragmentByTag("network_problem") == null) {
NetworkProblemDialogFragm.newInstance(r, this).show(act.getSupportFragmentManager(), "network_problem");
} else {
((NetworkProblemDialogFragm) act.getSupportFragmentManager().findFragmentByTag("network_problem")).setSpiceRequest(r);
((NetworkProblemDialogFragm) act.getSupportFragmentManager().findFragmentByTag("network_problem")).setRequestListener(this);
}
}
@Override
public void onRequestSuccess(CountProfiles countProfiles) {
}
});
NetworkProblemDialogFragm是重試按鈕DialogFragment,在點擊這個按鈕,我重新執行失敗的請求,利用給定的RequestListener。
不是很漂亮的解決方案,但看起來像沒有更好的解決方案。
看起來像刪除聽衆不是唯一的問題。 'SpiceRequest'有許多「狀態變量」('isCanceled','future','progress'),所以如果重新使用它而沒有對這些變量進行適當的重新初始化可能會導致意想不到的結果。 – Deinlandel 2014-09-11 11:59:50
如果您找到解決方案,請分享,如果OAuth令牌過期,我需要重試。 – BornToCode 2014-10-02 06:17:29
@BornToCode請檢查我的答案 – Divers 2014-10-03 07:50:57