use of com.ichi2.async.CollectionTask.TASK_TYPE.CONF_RESET in project AnkiChinaAndroid by ankichinateam.
the class StudyOptionsFragment method openReviewer.
private void openReviewer() {
if (mShouldConfigBeforeStudy && mOptions != null) {
SharedPreferences sharedPreferences = getAnkiActivity().getSharedPreferences(STUDY_SETTING, 0);
StringBuilder initIds = new StringBuilder(sharedPreferences.getString(KEY_CONFIG_INIT, ""));
if (initIds.length() > 0) {
String[] ids = initIds.toString().split(",");
if (ids.length > 0) {
for (String id : ids) {
if (getCol().getDecks().current().getLong("id") == Long.parseLong(id)) {
// 已经初始化过了,直接跳过
openReviewerInternal();
return;
}
}
}
// 没初始化过,那现在也初始化了。
// initIds.append(",");
}
for (long id : getDeckIds(getCol().getDecks().current().getLong("id"), getCol())) {
if (!initIds.toString().isEmpty()) {
initIds.append(",");
}
initIds.append(id);
}
// initIds += Stats.deckLimit(getCol().getDecks().current().getLong("id"), getCol()).replace("(","").replace(")","").trim();//要把子牌组也加入里面
sharedPreferences.edit().putString(KEY_CONFIG_INIT, initIds.toString()).apply();
String savedMindModeValue = sharedPreferences.getString(KEY_MIND_MODE, "");
Map<String, Integer> map = null;
try {
Gson gson = new Gson();
map = gson.fromJson(savedMindModeValue, new TypeToken<Map<String, Integer>>() {
}.getType());
} catch (Exception e) {
e.printStackTrace();
}
String mDeckIdStr = String.valueOf(getCol().getDecks().current().getLong("id"));
mCurrentMindModeValue = map != null && map.get(mDeckIdStr) != null ? map.get(mDeckIdStr) : 0;
if (mMindModeValues == null) {
mMindModeValues = getResources().getStringArray(R.array.mind_mode_values);
mMindModeLabels = getResources().getStringArray(R.array.mind_mode_labels);
mMindModeHints = getResources().getStringArray(R.array.mind_mode_hint);
for (int i = 0; i < mMindModeValues.length; i++) {
mMindModeMap.put(Integer.valueOf(mMindModeValues[i]), mMindModeLabels[i]);
}
}
CustomStyleDialog customDialog = new CustomStyleDialog.Builder(getAnkiActivity()).setTitle("记忆模式").setCustomLayout(R.layout.dialog_common_custom_next).setSelectListModeCallback(new CustomStyleDialog.Builder.SelectListModeCallback() {
@Override
public String[] getItemContent() {
return mMindModeLabels;
}
@Override
public String[] getItemHint() {
return mMindModeHints;
}
@Override
public int getDefaultSelectedPosition() {
return mCurrentMindModeValue;
}
@Override
public void onItemSelect(int position) {
mCurrentMindModeValue = position;
}
}).setPositiveButton("下一步", (dialog, which) -> {
String oldValue = sharedPreferences.getString(KEY_MIND_MODE, "");
Map<String, Integer> oldMap = null;
Gson gson = new Gson();
try {
oldMap = gson.fromJson(oldValue, new TypeToken<Map<String, Integer>>() {
}.getType());
} catch (Exception e) {
e.printStackTrace();
}
if (oldMap == null) {
oldMap = new HashMap<>();
}
for (long id : getDeckIds(getCol().getDecks().current().getLong("id"), getCol())) {
// Timber.i("看看都是什么id %s", id);
oldMap.put(String.valueOf(id), mCurrentMindModeValue);
}
String newValue = gson.toJson(oldMap);
sharedPreferences.edit().putString(KEY_MIND_MODE, newValue).apply();
CollectionTask.launchCollectionTask(CONF_RESET, new ConfChangeHandler(StudyOptionsFragment.this, mCurrentMindModeValue), // 先恢复默认,即长记模式
new TaskData(new Object[] { mOptions }));
dialog.dismiss();
}).setNegativeButton("跳过", (dialog, which) -> {
dialog.dismiss();
try {
getCol().getDecks().save(mOptions);
} catch (RuntimeException e) {
Timber.e(e, "DeckOptions - RuntimeException on saving conf");
AnkiDroidApp.sendExceptionReport(e, "DeckOptionsSaveConf");
}
refreshOption();
openReviewerInternal();
}).create();
customDialog.show();
} else {
openReviewerInternal();
}
}
use of com.ichi2.async.CollectionTask.TASK_TYPE.CONF_RESET in project AnkiChinaAndroid by ankichinateam.
the class StudySettingActivity method onClick.
@Override
public void onClick(View v) {
int id = v.getId();
CustomStyleDialog customDialog = null;
switch(id) {
case R.id.rl_max_learn_card:
customDialog = new CustomStyleDialog.Builder(this).setTitle("每日新卡上限").setEditorText(tx_max_learn_card.getText().toString(), "学习一段时间后,未来每天新卡+复习卡约180张,大约需30分钟").addSingleTextChangedListener(new CustomStyleDialog.Builder.MyTextWatcher() {
@Override
public void beforeTextChanged(Dialog dialog, CharSequence s, int start, int count, int after) {
}
@Override
public void onTextChanged(Dialog dialog, CharSequence s, int start, int before, int count) {
if (s.toString().isEmpty()) {
((CustomStyleDialog) dialog).getSingleEditorModeHintView().setText("未来每天学习量=新卡数x6");
} else {
try {
int num = Integer.parseInt(s.toString()) * 6;
int time = num * 10 / 60;
((CustomStyleDialog) dialog).getSingleEditorModeHintView().setText(String.format("学习一段时间后,未来每天新卡+复习卡约%s张,大约需%s分钟", num, time));
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(StudySettingActivity.this, "请填写0至9999之间的数值", false);
}
}
}
@Override
public void afterTextChanged(Dialog dialog, Editable s) {
}
}).setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 0 && num <= 9999) {
mOptions.getJSONObject("new").put("perDay", num);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写0至9999之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写0至9999之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_max_review_card:
customDialog = new CustomStyleDialog.Builder(this).setTitle("每日复习数上限").setEditorText(tx_max_review_card.getText().toString(), "建议设置为最大9999,有多少复习多少").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 0 && num <= 9999) {
mOptions.getJSONObject("rev").put("perDay", num);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写0至9999之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写0至9999之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_deck_conf_max_ivl:
customDialog = new CustomStyleDialog.Builder(this).setTitle("最大时间间隔").setEditorText(tx_max_review_card.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 0 && num <= 99999) {
mOptions.getJSONObject("rev").put("maxIvl", num);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写0至99999之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写0至99999之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_interval_step:
customDialog = new CustomStyleDialog.Builder(this).setTitle("间隔的步伐(以分钟计)").setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_CLASS_TEXT).setEditorText(tx_interval_step.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
String num = ((CustomStyleDialog) dialog).getEditorText();
String validated = getValidatedStepsInput(num);
if (validated == null) {
UIUtils.showThemedToast(this, getResources().getString(R.string.steps_error), false);
} else if (TextUtils.isEmpty(validated)) {
UIUtils.showThemedToast(this, getResources().getString(R.string.steps_min_error), false);
} else {
mOptions.getJSONObject("new").put("delays", convertToJSON(num));
saveAndUpdateValues();
Timber.i("edit num:%s", num);
dialog.dismiss();
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_interval_graduate:
customDialog = new CustomStyleDialog.Builder(this).setTitle("毕业时间间隔(以天计)").setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_CLASS_TEXT).setEditorText(tx_interval_graduate.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 1 && num <= 99) {
// [graduating, easy]
JSONArray newInts = new JSONArray();
newInts.put(num);
newInts.put(mOptions.getJSONObject("new").getJSONArray("ints").getInt(1));
mOptions.getJSONObject("new").put("ints", newInts);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写1至99之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写1至99之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_interval_simple:
customDialog = new CustomStyleDialog.Builder(this).setTitle("简单按钮对应的时间间隔").setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_CLASS_TEXT).setEditorText(tx_interval_simple.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 1 && num <= 99) {
JSONArray newInts = new JSONArray();
//
newInts.put(mOptions.getJSONObject("new").getJSONArray("ints").getInt(0));
newInts.put(num);
mOptions.getJSONObject("new").put("ints", newInts);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写1至99之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写1至99之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_init_level:
customDialog = new CustomStyleDialog.Builder(this).setTitle("初始难度").setEditorText(tx_init_level.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 100 && num <= 999) {
mOptions.getJSONObject("new").put("initialFactor", num * 10);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写100至999之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写1至99之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_new_card_sequence:
final int[] selectPosition = { mCurrentNewOrderValue };
customDialog = new CustomStyleDialog.Builder(this).setTitle("新卡顺序").setSelectListModeCallback(new CustomStyleDialog.Builder.SelectListModeCallback() {
@Override
public String[] getItemContent() {
return mNewOrderLabels;
}
@Override
public String[] getItemHint() {
return new String[0];
}
@Override
public int getDefaultSelectedPosition() {
return selectPosition[0];
}
@Override
public void onItemSelect(int position) {
selectPosition[0] = position;
}
}).setPositiveButton("确认", (dialog, which) -> {
int oldValue = mOptions.getJSONObject("new").getInt("order");
if (oldValue != selectPosition[0]) {
mOptions.getJSONObject("new").put("order", selectPosition[0]);
CollectionTask.launchCollectionTask(REORDER, new ConfChangeHandler(StudySettingActivity.this), new TaskData(new Object[] { mOptions }));
}
dialog.dismiss();
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
customDialog.show();
break;
case R.id.rl_learn_sequence:
final int[] selectPosition3 = { mCurrentStudyPreferenceValue };
customDialog = new CustomStyleDialog.Builder(this).setTitle("学习顺序").setSelectListModeCallback(new CustomStyleDialog.Builder.SelectListModeCallback() {
@Override
public String[] getItemContent() {
return mStudyPreferenceLabels;
}
@Override
public String[] getItemHint() {
return new String[0];
}
@Override
public int getDefaultSelectedPosition() {
return selectPosition3[0];
}
@Override
public void onItemSelect(int position) {
selectPosition3[0] = position;
}
}).setPositiveButton("确认", (dialog, which) -> {
int oldValue = mCol.getConf().getInt("newSpread");
if (oldValue != selectPosition3[0]) {
mCol.getConf().put("newSpread", selectPosition3[0]);
mCol.setMod();
CollectionTask.launchCollectionTask(REORDER, new ConfChangeHandler(StudySettingActivity.this), new TaskData(new Object[] { mOptions }));
}
dialog.dismiss();
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
customDialog.show();
break;
case R.id.rl_medal_simple:
customDialog = new CustomStyleDialog.Builder(this).setTitle("回答简单的时间间隔增加比例").setEditorText(tx_medal_simple.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 100 && num <= 1000) {
mOptions.getJSONObject("rev").put("ease4", (Integer) num / 100.0f);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写100至1000之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写100至1000之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_interval_decoration:
customDialog = new CustomStyleDialog.Builder(this).setTitle("时间间隔因子").setEditorText(tx_interval_decoration.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num: " + num / 100.0f);
if (num >= 0 && num <= 999) {
mOptions.getJSONObject("rev").put("ivlFct", num / 100.0f);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写0至999之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写0至999之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_error_interval_step:
customDialog = new CustomStyleDialog.Builder(this).setTitle("间隔的步伐(以分钟计)").setInputType(InputType.TYPE_CLASS_NUMBER | InputType.TYPE_CLASS_TEXT).setEditorText(tx_error_interval_step.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
String num = ((CustomStyleDialog) dialog).getEditorText();
String validated = getValidatedStepsInput(num);
if (validated == null) {
UIUtils.showThemedToast(this, getResources().getString(R.string.steps_error), false);
} else {
mOptions.getJSONObject("lapse").put("delays", StepsPreference.convertToJSON(num));
saveAndUpdateValues();
Timber.i("edit num:%s", num);
dialog.dismiss();
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_error_new_interval:
customDialog = new CustomStyleDialog.Builder(this).setTitle("新的时间间隔").setEditorText(tx_error_new_interval.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 0 && num <= 100) {
mOptions.getJSONObject("lapse").put("mult", num / 100.0f);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写0至100之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写0至100之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.rl_error_min_interval:
customDialog = new CustomStyleDialog.Builder(this).setTitle("最小时间间隔(天)").setEditorText(tx_error_min_interval.getText().toString(), "").setPositiveButton("确认", (dialog, which) -> {
try {
int num = Integer.parseInt(((CustomStyleDialog) dialog).getEditorText());
Timber.i("edit num:%s", num);
if (num >= 1 && num <= 99) {
mOptions.getJSONObject("lapse").put("minInt", num);
saveAndUpdateValues();
dialog.dismiss();
} else {
UIUtils.showThemedToast(this, "请填写1至99之间的数值", false);
}
} catch (Exception e) {
e.printStackTrace();
UIUtils.showThemedToast(this, "请填写1至99之间的数值", false);
}
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
Timber.i("build a dialog!");
customDialog.show();
break;
case R.id.ll_algorithm:
final int[] selectPosition4 = { mCurrentMindModeValue };
customDialog = new CustomStyleDialog.Builder(this).setTitle("选择记忆模式").setSelectListModeCallback(new CustomStyleDialog.Builder.SelectListModeCallback() {
@Override
public String[] getItemContent() {
return mMindModeLabels;
}
@Override
public String[] getItemHint() {
return mMindModeHints;
}
@Override
public int getDefaultSelectedPosition() {
return selectPosition4[0];
}
@Override
public void onItemSelect(int position) {
selectPosition4[0] = position;
}
}).setPositiveButton("确认", (dialog, which) -> {
SharedPreferences sharedPreferences = getSharedPreferences(STUDY_SETTING, 0);
String oldValue = sharedPreferences.getString(KEY_MIND_MODE, "");
// Timber.i("看看保存成什么样子了 %s ", oldValue);
Map<String, Integer> oldMap = null;
Gson gson = new Gson();
try {
oldMap = gson.fromJson(oldValue, Map.class);
} catch (Exception e) {
e.printStackTrace();
}
if (oldMap == null) {
oldMap = new HashMap<>();
}
for (long did : getDeckIds(mDeckId, getCol())) {
// Timber.i("看看都是什么id %s,%s", did, selectPosition4[0]);
oldMap.put(String.valueOf(did), selectPosition4[0]);
}
String newValue = gson.toJson(oldMap);
sharedPreferences.edit().putString(KEY_MIND_MODE, newValue).apply();
mSavedMaxNewCardNum = mOptions.getJSONObject("new").getInt("perDay");
mSavedMaxRevCardNum = mOptions.getJSONObject("rev").getInt("perDay");
CollectionTask.launchCollectionTask(CONF_RESET, new ConfChangeHandler(StudySettingActivity.this, selectPosition4[0]), // 先恢复默认,即长记模式
new TaskData(new Object[] { mOptions }));
dialog.dismiss();
}).setNegativeButton("取消", (dialog, which) -> dialog.dismiss()).create();
customDialog.show();
break;
}
}
Aggregations