中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android8.0中怎么開啟service

發布時間:2021-06-26 14:40:05 來源:億速云 閱讀:412 作者:Leah 欄目:大數據

本篇文章為大家展示了Android8.0中怎么開啟service,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

原因

Android 8.0 有一項復雜功能;系統不允許后臺應用創建后臺服務。 因此,Android 8.0 引入了一種全新的方法,即 Context.startForegroundService(),以在前臺啟動新服務。 在系統創建服務后,應用有5秒的時間來調用該服務的 startForeground() 方法以顯示新服務的用戶可見通知。如果應用在此時間限制內未調用 startForeground(),則系統將停止服務并聲明此應用為 ANR。

遇到的問題

但是目前在調用:context.startForegroundService(intent)時報如下ANR,startForegroundService()文檔說明在service啟動后要調用startForeground()。

android.app.RemoteServiceException: Context.startForegroundService() did not then call Service.startForeground()

完整解決步驟:

1. 添加權限

<!--android 9.0上使用前臺服務,需要添加權限,此權限為級別為nomarl-->
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

2. 啟動server(引用啟動5秒內要啟動server)

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
       context.startForegroundService(new Intent(context, MyService.class));
   } else {
       context.startService(new Intent(context, MyService.class));
   }

然后必須在Myservice中調用startForeground():

3. Server中onCreate方法中調用startForeground()

public static final String CHANNEL_ID_STRING = "service_01";
private Notification notification;
   @Override
   public void onCreate() {
       super.onCreate();
       //適配8.0service
       NotificationManager notificationManager = (NotificationManager) MyApp.getInstance().getSystemService(Context.NOTIFICATION_SERVICE);
       NotificationChannel mChannel = null;
       if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
           mChannel = new NotificationChannel(CHANNEL_ID_STRING, getString(R.string.app_name),
                   NotificationManager.IMPORTANCE_LOW);
           notificationManager.createNotificationChannel(mChannel);
           notification = new Notification.Builder(getApplicationContext(), CHANNEL_ID_STRING).build();
           startForeground(1, notification);
       }
}

4. 在onStart里再次調用startForeground()

@Override
public void onStart(Intent intent, int startId) {
   super.onStart(intent, startId);

   if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
       startForeground(1, notification);
   }

}

注解:

  • Android 8.0 系統不允許后臺應用創建后臺服務,故只能使用Context.startForegroundService()啟動服務

  • 創建服務后,應用必須在5秒內調用該服務的 startForeground() 顯示一條可見通知,聲明有服務在掛著,不然系統會停止服務 + ANR 套餐送上。

  • Notification 要加 Channel,系統的要求

  • 為什么要在onStart里再次調用startForeground()?答:這一條主要是針對后臺保活的服務,如果在服務A運行期間,保活機制又startForegroundService啟動了一次服務A,那么這樣不會調用服務A的onCreate方法,只會調用onStart方法。如果不在onStart方法里再掛個通知的話,系統會認為你使用了 startForegroundService 卻不在 5 秒內給通知,很傻地就停止服務 + ANR 套餐送上了。

上述內容就是Android8.0中怎么開啟service,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

西林县| 深泽县| 册亨县| 河北区| 兰坪| 九龙县| 绥棱县| 龙里县| 哈尔滨市| 白银市| 通江县| 定兴县| 九台市| 安乡县| 天水市| 泗阳县| 绍兴市| 长兴县| 潜江市| 洞口县| 博白县| 都昌县| 大丰市| 新绛县| 铜山县| 平和县| 育儿| 芦山县| 沭阳县| 呼图壁县| 中西区| 蓬莱市| 灵武市| 荔浦县| 呼伦贝尔市| 康平县| 仪陇县| 循化| 合川市| 安阳市| 彝良县|