修改测试问题

This commit is contained in:
18401019693
2023-11-14 16:05:43 +08:00
parent aff5a178a0
commit 82c1d15ca5
9 changed files with 158 additions and 156 deletions

View File

@@ -202,9 +202,9 @@ public class CreateSudGamePopup extends BottomPopupView {
if (TextUtils.equals(currencyType, "3")) {
if (IMLoginManager.get(getContext()).getLocaleLanguage() == Locale.SIMPLIFIED_CHINESE) {
ToastUtil.show("量区间为100--5W");
ToastUtil.show("貨幣數量区间为100--5W");
} else {
ToastUtil.show("The quantity range is 100 to 5 W");
ToastUtil.show("The amount of money ranges from 100 to 5 W");
}
} else {
if (IMLoginManager.get(getContext()).getLocaleLanguage() == Locale.SIMPLIFIED_CHINESE) {
@@ -219,18 +219,18 @@ public class CreateSudGamePopup extends BottomPopupView {
if (TextUtils.equals(currencyType, "3")) {
if (sill.length() > 6) {
if (IMLoginManager.get(getContext()).getLocaleLanguage() == Locale.SIMPLIFIED_CHINESE) {
ToastUtil.show("量区间为100--5W");
ToastUtil.show("貨幣數量区间为100--5W");
} else {
ToastUtil.show("The quantity range is 100 to 5 W");
ToastUtil.show("The amount of money ranges from 100 to 5 W");
}
return;
} else {
int sillNumber = Integer.parseInt(sill);
if (sillNumber < 100 || sillNumber > 50000) {
if (IMLoginManager.get(getContext()).getLocaleLanguage() == Locale.SIMPLIFIED_CHINESE) {
ToastUtil.show("量区间为100--5W");
ToastUtil.show("貨幣數量区间为100--5W");
} else {
ToastUtil.show("The quantity range is 100 to 5 W");
ToastUtil.show("The amount of money ranges from 100 to 5 W");
}
return;
}
@@ -246,18 +246,18 @@ public class CreateSudGamePopup extends BottomPopupView {
} else {
if (sill.length() > 4) {
if (IMLoginManager.get(getContext()).getLocaleLanguage() == Locale.SIMPLIFIED_CHINESE) {
ToastUtil.show("幣數量區間為[10 - 1000]");
ToastUtil.show("幣數量区间为[10 - 1000]");
} else {
ToastUtil.show("The number range of star coins is [10-1000]");
ToastUtil.show("Currency quantity range [10-1000]");
}
return;
} else {
int sillNumber = Integer.parseInt(sill);
if (sillNumber < 10 || sillNumber > 1000) {
if (IMLoginManager.get(getContext()).getLocaleLanguage() == Locale.SIMPLIFIED_CHINESE) {
ToastUtil.show("量区间为10~1000");
ToastUtil.show("貨幣數量区间为[10 - 1000]");
} else {
ToastUtil.show("The quantity range is 10 to 1000");
ToastUtil.show("Currency quantity range [10-1000]]");
}
return;
}