标签:span code timertask -- 学习笔记 err logs task cancel
1 timer = new Timer(); 2 mTimerTask = new TimerTask() { 3 @Override 4 public void run() { 5 6 //停止定时
7 mTimerTask.cancel(); 8 } 9 }; 10 timer.schedule(mTimerTask, 950);//延时事件
标签:span code timertask -- 学习笔记 err logs task cancel
原文地址:http://www.cnblogs.com/langfei8818/p/6432168.html