每5分钟后启动Android服务(Start Android Service after every

2019-07-04 22:53发布

我正在寻找在互联网上的最后2天,但我无法找到任何教程很有帮助。 我创建了一个服务,并在服务启动时,我在状态栏中发送通知。 我想该服务停止显示通知后5分钟后再次启动它。 请让我知道,如果有可能,并提供我一些有用的教程,如果您有任何。 我听说过TimerTaskAlarmManager ,我试图用它们作为很好,但我没能得到期望的结果。

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

Answer 1:

你不想使用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);
}


Answer 2:

下面我提供的三个文件,MainActivity.java用于启动服务,第二个文件MyService.java 5分钟提供服务,三是清单文件。

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>


Answer 3:

创建一个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对象停止计时器变量或东西。



文章来源: Start Android Service after every 5 minutes