日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > Android >内容正文

Android

android 粘性service,Android服务1 Service

發(fā)布時間:2025/3/13 Android 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android 粘性service,Android服务1 Service 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

四大組件全部要注冊

Service特點:用于在后臺耗時操作

1.

public class MyService extends Service {

public IBinder onBind(Intent intent) {}

public void onCreate() {}

public int onStartCommand(Intent intent, int flags, int startId) {????? ? //? ? 運行在主線程,開子線程做耗時操作

return 返回值;????? ? //????START_REDELIVER_INTENT:帶數(shù)據(jù)的粘性標記。系統(tǒng)把服務殺死,服務會再次啟動,并且會保留傳遞的數(shù)據(jù)。

//????START_STICKY:粘性標記(默認)。系統(tǒng)把服務殺死,服務會再次嘗試連接,intent會為null。

//????START_NOT_STICKY:非粘性標記。系統(tǒng)把服務殺死,服務不會再次啟動。

}

public void onDestroy() {}

在MyService中停止服務:stopSelf();

}

2.啟動與停止服務:

context.startService(new Intent(this, MyService.class));

context.stopService(new Intent(this, MyService.class));

總結

以上是生活随笔為你收集整理的android 粘性service,Android服务1 Service的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。