项目基类保存!(肯定有大用啊!)
骚气的大勇
来吧!干!
展开
-
android判断EditText输入的数字、中文还是字母方法
android判断EditText输入的数字、中文还是字母方法String txt = edInput.getText().toString(); Pattern p = Pattern.compile("[0-9]*"); Matcher m = p.matcher(txt); if(m.matches() ){ To转载 2015-10-14 10:33:30 · 802 阅读 · 0 评论 -
倒计时
Timer timer = new Timer(); timer.schedule(task, 1000, 1000);TimerTask task = new TimerTask() {@Overridepublic void run() {runOnUiThread(new Runnable() { // UI thread@Overridepublic void run() {recLen原创 2015-10-14 11:37:19 · 301 阅读 · 0 评论