1209c37e24
Android 12 dynamic color usage on login screen
12 lines
245 B
Kotlin
12 lines
245 B
Kotlin
package com.meloda.fast.concurrent
|
|
|
|
import android.os.Process
|
|
|
|
class LowThread(runnable: Runnable?) : Thread(runnable) {
|
|
|
|
override fun run() {
|
|
Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND)
|
|
super.run()
|
|
}
|
|
|
|
} |