在服务中执行重复的任务

作者:追风剑情 发布于:2015-7-29 21:17 分类:Android

使用Timer类来运行重复的任务

  1. package com.example.androidtest;
  2.  
  3. import java.net.MalformedURLException;
  4. import java.net.URL;
  5. import java.util.Timer;
  6. import java.util.TimerTask;
  7.  
  8. import android.app.Service;
  9. import android.content.Intent;
  10. import android.os.AsyncTask;
  11. import android.os.IBinder;
  12. import android.util.Log;
  13. import android.widget.Toast;
  14.  
  15. public class MyService1 extends Service {
  16.  
  17. int counter = 0;
  18. static final int UPDATE_INTERVAL = 1000;
  19. private Timer timer = new Timer();
  20. @Override
  21. public IBinder onBind(Intent intent) {
  22. // TODO Auto-generated method stub
  23. return null;
  24. }
  25. @Override
  26. public int onStartCommand(Intent intent, int flags, int startId){
  27.  
  28. doSomethingRepeatedly();
  29. return START_STICKY;
  30. }
  31.  
  32. @Override
  33. public void onDestroy(){
  34. super.onDestroy();
  35. if (timer != null){
  36. timer.cancel();
  37. }
  38. Toast.makeText(this, "Service Destroyed", Toast.LENGTH_LONG).show();
  39. }
  40. private void doSomethingRepeatedly()
  41. {
  42. timer.scheduleAtFixedRate(new TimerTask(){
  43. @Override
  44. public void run() {//工作者线程
  45. Log.d("AndroidTest", String.valueOf(++counter));
  46. }
  47. }, 0, UPDATE_INTERVAL);
  48. }
  49. }

运行效果

1111111111.png

标签: Android

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号