Kotlin优雅地判断EditText数据是否为空
Posted _H_JY
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kotlin优雅地判断EditText数据是否为空相关的知识,希望对你有一定的参考价值。
很多时候我们要判断EditText输入的数据是否为空,在Java中需要以下代码:
String mobile = etMobile.getText().toString();
if (TextUtils.isEmpty(mobile))
showError("手机号不能为空");
return;
String password = etPassword.getText().toString();
if (TextUtils.isEmpty(password))
showError("密码不能为空");
return;
...
现在我们来看看同样的事情用Kotlin怎么优雅地实现:
// 编写一个扩展方法
fun TextView.checkBlank(message: String): String?
val text = this.text.toString()
if (text.isBlank())
showError(message)
return null
return text
// 优雅地判空
val mobile = etMobile.checkBlank("手机号不能为空") ?: return
val password = etPassword.checkBlank("密码不能为空") ?: return
以上是关于Kotlin优雅地判断EditText数据是否为空的主要内容,如果未能解决你的问题,请参考以下文章