服务器之家

服务器之家 > 正文

Android Service自启动注意事项分析

时间:2021-06-24 13:59     来源/作者:nosxcy

本文实例分析了android service自启动注意事项。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@override
public void onstart(intent intent, int startid) {
    super.onstart(intent, startid);
    if(intent == null)
      return;
}
@override
public void ondestroy() {
    super.ondestroy();
    intent intent = new intent(sensorservice.this, sensorservice.class);
    startservice(intent);
}
@override
public int onstartcommand(intent intent, int flags, int startid) {
//    flags = service.start_sticky;
    flags = service.start_redeliver_intent;
    return super.onstartcommand(intent, flags, startid);
}

ps重点就在这个 flags ,开始时用service.start_sticky; service 经常会自动fc查了好久才发现再次自启动时候onstart里intent为null,改为flags = service.start_redeliver_intent;就可以了。

希望本文所述对大家android程序设计有所帮助。

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
2021德云社封箱演出完整版 2021年德云社封箱演出在线看
2021德云社封箱演出完整版 2021年德云社封箱演出在线看 2021-03-15
返回顶部