修改测试问题

This commit is contained in:
18401019693 2023-11-14 18:13:14 +08:00
parent 82c1d15ca5
commit 256c19a09e

View File

@ -202,35 +202,35 @@ 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 amount of money ranges from 100 to 5 W");
ToastUtil.show("The amount of money ranges from [100-5W]");
}
} else {
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;
}
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 amount of money ranges from 100 to 5 W");
ToastUtil.show("The amount of money ranges from [100-5W]");
}
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 amount of money ranges from 100 to 5 W");
ToastUtil.show("The amount of money ranges from [100-5W]");
}
return;
}