使用TextUtils.isEmpty简单化代码
Posted 我是修电脑的
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用TextUtils.isEmpty简单化代码相关的知识,希望对你有一定的参考价值。
如果让你判断一个文本框是否为空(null)或者没有任何值(length=0),你会怎么怎样去写代码,很多初学者可能会这样写:
if(text==null || text.length==0)
{........}
其实没有必要这么麻烦,在android的官方API中有更方便的解决方法:Returns true if the string is null or 0-length,可以使用这个方法-TextUtils.isEmpty()
可以这样写:
if(!TextUtils.isEmpty(text))
{.....}
以上是关于使用TextUtils.isEmpty简单化代码的主要内容,如果未能解决你的问题,请参考以下文章
if(TextUtils.isEmpty(sp.getString("password", ""))),这行代码报空指针异常,怎么解决?