有没有办法避免类似的TextInputEditText验证重复?



片段中有5个TextInputEditText字段。第一个是字符串,另外 4 个是用户必须输入的双精度。 为了确保这些值有效,将检查每个字段的空度,如果值为双精度值,则检查最后四个字段(带双精度(。

在下面的代码中,我切断了最后 2 个 val & fun 声明,因为它们与最后 2 个 oes 完全相同,除了 TextInPutLayout 名称(和相应的 val(。

所以,我想知道是否有可能以任何方式缩短它

private val enterTextFoodName = view.findViewById<TextInputLayout>(R.id.enter_food_name)
private val enterTextKcal = view.findViewById<TextInputLayout>(R.id.enter_kcal)
private val enterTextCarbs = view.findViewById<TextInputLayout>(R.id.enter_carbs)
[...]
private fun validateValues(): Boolean {
return (!validateFoodName()
|| !validateKcal()
|| !validateCarbs()
[...])
}
private fun validateFoodName(): Boolean {
return when {
enterTextFoodName.editText?.text.toString().trim().isEmpty() -> {
enterTextFoodName.error = getString(R.string.cant_be_empty)
false
}
else -> {
enterTextFoodName.error = null
true
}
}
}
private fun validateKcal(): Boolean {
return when {
enterTextKcal.editText?.text.toString().trim().isEmpty() -> {
enterTextKcal.error = getString(R.string.cant_be_empty)
false
}
enterTextKcal.editText?.text.toString().trim().toDoubleOrNull() == null -> {
enterTextKcal.error = getString(R.string.invalid_value)
false
}
else -> {
enterTextKcal.error = null
true
}
}
}
private fun validateCarbs(): Boolean {
return when {
enterTextCarbs.editText?.text.toString().trim().isEmpty() -> {
enterTextCarbs.error = getString(R.string.cant_be_empty)
false
}
enterTextCarbs.editText?.text.toString().trim().toDoubleOrNull() == null -> {
enterTextCarbs.error = getString(R.string.invalid_value)
false
}
else -> {
enterTextCarbs.error = null
true
}
}
}
[...]

你可以在 Kotlin 中使用扩展函数来实现它:

inline fun TextInputLayout.validateInput(messageInvalid: String? = null, checkIfValid: (String?) -> Boolean): Boolean {
val inputText = editText?.text?.toString()?.trim()
when {
inputText.isNullOrEmpty() -> {
error = context.getString(R.string.cant_be_empty)
}
!checkIfValid(inputText) -> {
error = messageInvalid
}
else -> {
error = null
return true
}
}
return false
}

然后你可以像这样使用它:

val isCarbsValid = enterTextCarbs.validateInput(getString(R.string.invalid_value)) { it?.toDoubleOrNull() != null }

相关内容

  • 没有找到相关文章

最新更新