奇怪的实时数据行为?



我试图使用 ViewModel 和 LiveData 实现 MVVM 架构。这两种方法位于活动内部:

private void handleResult(BoardViewModel vm) {
vm.getLiveDataSingleObj("Result").observe(this, new Observer<Object>() {
@Override
public void onChanged(@Nullable Object resultObj) {
Result result = (Result) resultObj;
if (!result.isCompleted()) return;
gotoResult();
}
});
}

private void gotoResult() {
Log.w(LOG_TAG, "Result: Moving to next activity");
Intent intent = new Intent(boardActivity, ResultActivity.class);
intent.putExtra("LEVEL", levelIndex);
intent.putExtra("MAP", mapIndex);
startActivity(intent);
}

handleResult 方法设置为侦听指示游戏已结束并且是时候继续下一个活动的结果对象("gotoResult")。但是,这完全破坏了应用程序的导航,当我返回然后说尝试开始新的游戏会话时,我会立即转到下一个活动,告诉我我已经赢了。

关于为什么它会多次触发并最终停止的任何想法,让我开始一个新的会话。澄清一下,如果我删除 gotoResult 时逻辑每次都没有索引越界的错误或你有什么错误时都能工作,只有当我添加 goto 时,一切都会中断。

视图模型:

private void setupHashTypes() {
hashLiveData.put(KEY_BOARD, liveDataBoardQuery);
hashLiveData.put(KEY_STEPS_COUNTER, game.getStepsTakenLiveData());
hashLiveData.put(KEY_PATH_CHANGE, game.getPathChangedLiveData());
hashLiveData.put(KEY_VALUE_CHANGE, game.getValueChangeLiveData());
hashLiveData.put(KEY_TIMER, game.getTimerLiveData());
hashLiveData.put(KEY_SELECTED, game.getSelectedLiveData());
hashLiveData.put(KEY_DESELECTED, game.getDeselectedLiveData());
hashLiveData.put(KEY_HOLD, game.getHoldLiveData());
hashLiveData.put(KEY_UNHOLD, game.getUnholdLiveData());
hashLiveData.put(KEY_RESULT, game.getResultLiveData());
}
public LiveData<Object> getLiveDataSingleObj(String type) {
if (hashLiveData.containsKey(type)) {
return (LiveData<Object>) hashLiveData.get(type);
}
throw new IllegalArgumentException("Invalid: key was not found: " + type);
}

模型有 getter,例如:

private final SingleLiveEvent<Result> resultLiveData = new SingleLiveEvent<>();
public LiveData<Result> getResultLiveData() {
return resultLiveData;
}

你应该在方法中删除onDestroy()观察者

从总是将以前的设置值重新发送到新订阅者的 MutableLiveData 更改为没有此行为的 SingleLiveEvent 解决了这个问题。

该类可以在这里找到:https://github.com/googlesamples/android-architecture/tree/dev-todo-mvvm-live/todoapp/app/src/main/java/com/example/android/architecture/blueprints/todoapp

相关内容

  • 没有找到相关文章

最新更新