Created
August 27, 2014 15:35
-
-
Save j-onathan/df4e821268b67e8410e5 to your computer and use it in GitHub Desktop.
Android Code Example: HandlerThread (from https://www.codota.com/android/scenarios/52fcbd32da0a29ba436a3ac7/android.os.HandlerThread?tag=dragonfly)
This file contains hidden or 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
HandlerThread thr = new HandlerThread("SystemUI StorageNotification"); | |
thr.start(); | |
mAsyncEventHandler = new Handler(thr.getLooper()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment