Android 8經過startService引發crash問題

Android 8.0 再也不容許後臺service直接經過startService方式去啓動,不然就會引發IllegalStateException。解決方式:java

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():緩存

@Override
public void onCreate() { super.onCreate(); startForeground(1,new Notification()); }

 注意:在要開啓的service中給notification添加 channelId,不然會出現以下錯誤:ide

RemoteServiceException: Bad notification for startForeground: java.lang.RuntimeException: invalid ch......函數

完整參考代碼以下:性能

 

    NotificationManager notificationManager;  ui

    String notificationId = "channelId";    this

    String notificationName = "channelName";    spa

    private void startForegroundService().net

    {        code

       notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);        

      //建立NotificationChannel        

      if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {            

      NotificationChannel channel = new NotificationChannel(notificationId, notificationName, NotificationManager.IMPORTANCE_HIGH);            

      notificationManager.createNotificationChannel(channel);       

      }        

      startForeground(1,getNotification());    

  }

  private Notification getNotification() {        

    Notification.Builder builder = new Notification.Builder(this)

                 .setSmallIcon(R.drawable.myicon)

                 .setContentTitle("投屏服務")

                 .setContentText("投屏服務正在運行...");   

      //設置Notification的ChannelID,不然不能正常顯示        

     if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {            

        builder.setChannelId(notificationId);        

     }        

    Notification notification = builder.build();        

    return notification;    

  }    

  @Override  

  public void onCreate() {        

    super.onCreate();       

    startForegroundService();   

    FLog.d(TAG, "[onCreate] MediaServer Service Started.");    

  }

 

補充:關於Android 8.0中Service和Notification

後臺執行限制 Android 8.0 爲提升電池續航時間而引入的變動之一是,當您的應用進入已緩存狀態時,若是沒有活動的組件,系統將解除應用具備的全部>>>喚醒鎖。 此外,爲提升設備性能,系統會限制未在前臺運行的應用的某些行爲。具體而言: 如今,在後臺運行的應用對後臺服務的訪問受到限制。 應用沒法使用其清單註冊大部分隱式廣播(即,並不是專門針對此應用的廣播)。 默認狀況下,這些限制僅適用於針對 O 的應用。不過,用戶能夠從 Settings 屏幕爲任意應用啓用這些限制,即便應用並非以 O 爲目標平臺。 Android 8.0 還對特定函數作出瞭如下變動: 若是針對 Android 8.0 的應用嘗試在不容許其建立後臺服務的狀況下使用 startService() 函數,則該函數將引起一個 IllegalStateException。 新的 Context.startForegroundService() 函數將啓動一個前臺服務。如今,即便應用在後臺運行,系統也容許其調用 Context.startForegroundService()。不過,應用必須在建立服務後的五秒內調用該服務的 startForeground() 函數。

參考連接:

https://blog.csdn.net/huaheshangxo/article/details/82856388

相關文章
相關標籤/搜索