How to set Priority of IntentService in Android

前端 未结 4 1279
再見小時候
再見小時候 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:25

    The HandlerThread that IntentService uses is not exposed to the SDK. It is set to Process.THREAD_PRIORITY_DEFAULT as a priority.

    Note that IntentService is 143 lines of code, including whitespace and comments, so you might consider just cloning it to have one with the priority you seek.

提交回复
热议问题