每5分钟后启动Android服务

时间:2012-12-11 12:38:02

标签: android service alarmmanager timertask

我在网上搜索了最近2天,但我找不到任何有用的教程。我已经创建了一个服务,我在服务启动时在状态栏中发送通知。我希望该服务在显示通知后停止,并在5分钟后再次启动。如果有可能请告诉我,如果有的话,请给我一些有用的教程。我听说过TimerTaskAlarmManager,我也试图使用它们,但我无法获得理想的结果。

编辑:即使我的应用程序没有运行,我也需要每5分钟启动一次服务。

3 个答案:

答案 0 :(得分:24)

您不想使用TimerTask,因为这取决于您的应用程序是否持续运行。 AlarmManager实现使您的应用程序在执行之间被杀死是安全的。

声明您尝试使用AlarmManager但未获得所需结果并不是一个有用的声明,因为它告诉没有人如何帮助您做到正确。表达发生的事情会更有用。

http://code4reference.com/2012/07/tutorial-on-android-alarmmanager/包含AlarmManager上有用的教程。以下是重点:

1)您的闹钟会在Intent到期后触发。由您来决定Intent是什么类型以及如何实施它。我提供的链接有一个基于BroadcastReceiver的完整示例。

2)您可以使用以下示例安装闹钟:

public void setOnetimeTimer(Context context) {
    AlarmManager am=(AlarmManager)context.getSystemService(Context.ALARM_SERVICE);
    Intent intent = new Intent(context, AlarmManagerBroadcastReceiver.class);
    intent.putExtra(ONE_TIME, Boolean.TRUE);
    PendingIntent pi = PendingIntent.getBroadcast(context, 0, intent, 0);
    am.set(AlarmManager.RTC_WAKEUP, System.currentTimeMillis() + (1000 * 60 * 5), pi);
}

答案 1 :(得分:8)

下面我提供了三个文件,MainActivity.java用于启动服务,第二个文件MyService.java为5 Minute和Third提供服务是清单文件。

MainActivity.java

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        startService(new Intent(this, MyService.class)); //start service which is MyService.java
    }
}

MyService.java

 public class MyService extends Service {

    public static final int notify = 300000;  //interval between two services(Here Service run every 5 Minute)
    private Handler mHandler = new Handler();   //run on another Thread to avoid crash
    private Timer mTimer = null;    //timer handling

    @Override
    public IBinder onBind(Intent intent) {
        throw new UnsupportedOperationException("Not yet implemented");
    }

    @Override
    public void onCreate() {
        if (mTimer != null) // Cancel if already existed
            mTimer.cancel();
        else
            mTimer = new Timer();   //recreate new
        mTimer.scheduleAtFixedRate(new TimeDisplay(), 0, notify);   //Schedule task
    }

    @Override
    public void onDestroy() {
        super.onDestroy();
        mTimer.cancel();    //For Cancel Timer
        Toast.makeText(this, "Service is Destroyed", Toast.LENGTH_SHORT).show();
    }

    //class TimeDisplay for handling task
    class TimeDisplay extends TimerTask {
        @Override
        public void run() {
            // run on another thread
            mHandler.post(new Runnable() {
                @Override
                public void run() {
                    // display toast
                    Toast.makeText(MyService.this, "Service is running", Toast.LENGTH_SHORT).show();
                }
            });
        }
    }
}

的AndroidManifest.xml

  <service android:name=".MyService" android:enabled="true" android:exported="true"></service>

答案 2 :(得分:-4)

创建一个Timer对象并给它一个TimerTask来执行您想要执行的代码。

Timer timer = new Timer ();
TimerTask hourlyTask = new TimerTask () {
    @Override
    public void run () {
        // your code here...
    }
};

// schedule the task to run starting now and then every hour...
timer.schedule (hourlyTask, 0l, 1000*60*60);   // 1000*10*60 every 10 minut

使用Timer对象的优点是它可以处理多个TimerTask对象,每个对象都有自己的定时,延迟等。只要你通过声明Timer对象来保持定时器,你也可以启动和停止定时器。作为类变量或其他东西。