How to set Priority of IntentService in Android

前端 未结 4 1255
再見小時候
再見小時候 2021-01-05 06:41

I was wondering if it is possible to set the priority of an IntentService like you can with a Thread. So far I have not found anything.

4条回答
  •  抹茶落季
    2021-01-05 07:38

    I changed the IntentService's priority using: "android.os.Process.setThreadPriority(android.os.Process.THREAD_PRIORITY_BACKGROUND);" in the constructor of the IntentService class.

    In my case it was changed from: "Process.THREAD_PRIORITY_DEFAULT" which is zero (0) to "Process.THREAD_PRIORITY_BACKGROUND" which is ten (10) and the result was visible.

提交回复
热议问题