Skip to content

Instantly share code, notes, and snippets.

@gabrielbmoro
Created June 25, 2020 16:27
Show Gist options
  • Save gabrielbmoro/bc052e0ebc048e21d496b0ac7bb4d3e8 to your computer and use it in GitHub Desktop.
Save gabrielbmoro/bc052e0ebc048e21d496b0ac7bb4d3e8 to your computer and use it in GitHub Desktop.
Progress color
fun setProgressBarColor(@ColorRes colorRes: Int) {
val unwrappedDrawable = progressbar.progressDrawable
DrawableCompat.setTint(unwrappedDrawable, ContextCompat.getColor(context, colorRes))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment