128june

[Android Studio] TextView의 Text 중 일부분 글자색 변경 본문

Android Studio

[Android Studio] TextView의 Text 중 일부분 글자색 변경

128june 2021. 2. 14. 17:35
반응형
// SpannableStringBuilder로 text를 설정
SpannableStringBuilder sp = new SpannableStringBuilder([text]);
// SpannableStringBuilder의 원하는 부분을 지정하여 글자색 변경
sp.setSpan(
	new ForegroundColorSpan(Color.BLACK)
    , [start num]
    , [end num]
    , Spannable.SPAN_EXCLUSIVE_EXCLUSIVE
);
// 해당내용 적용
[TextView].append(sp);

 

반응형
Comments