Hyeyeon blog

[Android] TextView 일부 내용에 색상 넣기 본문

개발/Android

[Android] TextView 일부 내용에 색상 넣기

Hyeyeon.P 2019. 8. 7. 00:16
반응형
val color = getColor(R.color.colorPrimaryDark) // 변경하려는 색상 
val str1 = "Black"
val str2 = "Purple"
val spannable = SpannableString("$str1$str2")
spannable.setSpan(ForegroundColorSpan(color), str1.length, str1.length + str2.length, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE)
textView.setText(spannable, TextView.BufferType.SPANNABLE)

728x90
Comments