标签:
frameworks/base/core/java/android/text/TextUtils.java
public static boolean isEmpty(CharSequence str) { if (str == null || str.length() == 0) return true; else return false; }
TextUtils
原文地址:http://www.cnblogs.com/muhe221/p/4280259.html