Created
January 15, 2016 03:04
-
-
Save waveacme/7853f20d5d87ddb1afac to your computer and use it in GitHub Desktop.
fix Cannot resolve sambol 'THREAD_PRIORITY_BACKGROUND' in HandlerThread
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//fix | |
import android.os.Process; | |
HandlerThread thread = new HandlerThread("work thread", Process.THREAD_PRIORITY_BACKGROUND); |
Of course it was an import. Thanks :)
thx
worked to me thanks
Thanks
It works! Thanks!
ty
thanks!
Thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Worked, Thanks.