本文介绍了这是什么一个EditText.getText()在Android的回报,如果它是空的?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经试过空和空字符串,任何其他的想法?
I've tried null and empty string, any other ideas?
推荐答案
没有其他的可能性。
的getText
,事实上,永远不会返回null。它返回的CharSequence
,其内容可能是空的。
getText
, infact, will never return null. It returns CharSequence
whose contents may be empty.
而不是做的getText()的。的toString()。等于()
或反之亦然,这可能会更快做的getText ().length()== 0
Instead of doing getText().toString().equals("")
or vice-versa, it may be faster to do getText().length() == 0
这篇关于这是什么一个EditText.getText()在Android的回报,如果它是空的?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!