android 退出应用 接收通知,android – 在应用关闭时发送通知

这篇博客介绍了如何在Android应用中创建一个定时服务,该服务在指定间隔后触发通知。通过在onStartCommand()中启动服务,并在NotificationService类中设置Timer和TimerTask,实现了定时发送通知的功能。当应用处于后台时,服务会在onStop()方法中停止。要使服务生效,还需在manifest.xml中注册。
摘要由CSDN通过智能技术生成

您可以使用此服务,只需在活动生命周期中启动此服务onStop()即可.使用此代码:

?startService(new Intent(this,NotificationService.class));

然后你可以创建一个新的Java类并将其粘贴到其中:

public class NotificationService extends Service {

Timer timer;

TimerTask timerTask;

String TAG = "Timers";

int Your_X_SECS = 5;

@Override

public IBinder onBind(Intent arg0) {

return null;

}

@Override

public int onStartCommand(Intent intent, int flags, int startId) {

Log.e(TAG, "onStartCommand");

super.onStartCommand(intent, flags, startId);

startTimer();

return START_STICKY;

}

@Override

public void onCreate() {

Log.e(TAG, "onCreate");

}

@Override

public void onDestroy() {

Log.e(TAG, "onDestroy");

stoptimertask();

super.onDestroy();

}

//we are going to use a handler to be able to run in our TimerTask

final Handler handler = new Handler();

public void startTimer() {

//set a new Timer

timer = new Timer();

//initialize the TimerTask's job

initializeTimerTask();

//schedule the timer, after the first 5000ms the TimerTask will run every 10000ms

timer.schedule(timerTask, 5000, Your_X_SECS * 1000); //

//timer.schedule(timerTask, 5000,1000); //

}

public void stoptimertask() {

//stop the timer, if it's not already null

if (timer != null) {

timer.cancel();

timer = null;

}

}

public void initializeTimerTask() {

timerTask = new TimerTask() {

public void run() {

//use a handler to run a toast that shows the current timestamp

handler.post(new Runnable() {

public void run() {

//TODO CALL NOTIFICATION FUNC

YOURNOTIFICATIONFUNCTION();

}

});

}

};

}

}

在此之后,您只需要将服务与manifest.xml结合使用:

android:name=".NotificationService"

android:label="@string/app_name">

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值