Skip to content

Instantly share code, notes, and snippets.

@stramek
Created October 17, 2017 10:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stramek/c50ce246798af21055f16cba104962d7 to your computer and use it in GitHub Desktop.
Save stramek/c50ce246798af21055f16cba104962d7 to your computer and use it in GitHub Desktop.
val callback = object : FontsContractCompat.FontRequestCallback() {
override fun onTypefaceRetrieved(typeface: Typeface?) {
textCode.typeface = typeface
}
override fun onTypefaceRequestFailed(reason: Int) {
Log.i("MainActivity", "onTypefaceRequestFailed with code: " + reason)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment