private int getInputLength() { if (item.getVerifytype().equalsIgnoreCase("number")) { if (item.getMaxLength() > 8 || item.getMaxLength() < 0) return 8; } else if (item.getVerifytype().equalsIgnoreCase("phone")) return 11; else if (item.getMaxLength() < 0) return 255; return item.getMaxLength(); }
private boolean checkData(String data) { if (data.equals("")) return true; if (item.getVerifytype().equalsIgnoreCase("amount")) { try { if (data.endsWith(".")) return true; else if (data.indexOf(".") != -1) { data = data.substring(data.indexOf("."), data.length()); if (data.length() > 3) { Tool.showToastMsg(context, item.getCaption() + "只能输入2位小数!", AlertType.ERR); return false; } } else { if (Double.parseDouble(data) > getMaxValue()) { Tool.showToastMsg(context, item.getCaption() + "不能大于" + getMaxValue(), AlertType.ERR); return false; } if (Integer.parseInt(data) < getMinValue()) { Tool.showToastMsg(context, item.getCaption() + "不能小于" + getMinValue(), AlertType.ERR); return false; } } } catch (Exception ex) { return false; } } else if (item.getVerifytype().equalsIgnoreCase("number")) { try { if (Integer.parseInt(data) > getMaxValue()) { Tool.showToastMsg(context, item.getCaption() + "不能大于" + getMaxValue(), AlertType.ERR); return false; } if (Integer.parseInt(data) < getMinValue()) { Tool.showToastMsg(context, item.getCaption() + "不能小于" + getMinValue(), AlertType.ERR); return false; } } catch (Exception ex) { return false; } } return true; }