Skip to content

Instantly share code, notes, and snippets.

@m4kvn
Created November 19, 2020 23:19
Show Gist options
  • Save m4kvn/3b2743eba434930a338a043804349c04 to your computer and use it in GitHub Desktop.
Save m4kvn/3b2743eba434930a338a043804349c04 to your computer and use it in GitHub Desktop.
AndroidのColorをランダムに生成するスニペット
val randomColor: Int by lazy {
val colorPatterns = arrayOf(
"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"
)
Color.parseColor(mutableListOf<String>()
.apply { repeat(6) { add(colorPatterns.random()) } }
.joinToString(separator = "", prefix = "#"))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment