Skip to content

Commit

Permalink
添加了新村黑白名单的配置,修复加载成功Toast的显示内容
Browse files Browse the repository at this point in the history
  • Loading branch information
constanline committed Sep 1, 2023
1 parent b82e712 commit e2dd12e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public void run() {
};
}
try {
AntForestToast.show(service.getString(R.string.app_name) + "加载成功");
AntForestToast.show("芝麻粒加载成功");
handler.removeCallbacks(runnable);
AntForest.stop();
AntForestNotification.stop(service, false);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -734,6 +734,14 @@ public void onClick(View v) {
ListDialog.show(this, btn.getText(), AlipayUser.getList(), Config.stallOpenList(), null);
break;

case R.id.btn_stallWhiteList:
ListDialog.show(this, btn.getText(), AlipayUser.getList(), Config.stallWhiteList(), null);
break;

case R.id.btn_stallBlackList:
ListDialog.show(this, btn.getText(), AlipayUser.getList(), Config.stallBlackList(), null);
break;

case R.id.btn_stallAllowOpenTime:
EditDialog.showEditDialog(this, btn.getText(), EditDialog.EditMode.STALL_ALLOW_OPEN_TIME);
break;
Expand Down

0 comments on commit e2dd12e

Please sign in to comment.