2012年5月15日

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) 编辑

android 设置文本框输入为数字

摘要: 设置文本框只接受数字editText.setKeyListener(new NumberKeyListener() { @Override protected char[] getAcceptedChars() { return new char[] { '1', '2', '3', '4', '5', '6', '7', '8', '9', '0' ... 阅读全文

posted @ 2012-05-15 11:09 beyond1008 阅读(1392) 评论(0) 推荐(0) 编辑

导航