android 判断文本框是否为空的方法。
摘要:
1.判断文本框是否为空的方法。 public static boolean isEmpty(String str) { if (str == null || str.trim().length() == 0) { return true; } else { return false; }} 阅读全文
posted @ 2012-05-15 11:10 beyond1008 阅读(1134) 评论(0) 推荐(0) 编辑