项目基类保存!(肯定有大用啊!)
骚气的大勇
来吧!干!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
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 · 840 阅读 · 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 · 336 阅读 · 0 评论
分享