Android/Kotlin

[Android][Kotlin] 코드로 텍스트 볼드 설정하기

yoo.o 2020. 4. 14. 02:41
반응형

how to set textView bold programmatically

 

textView.setTypeface(null, Typeface.BOLD_ITALIC)
textView.setTypeface(null, Typeface.BOLD)
textView.setTypeface(null, Typeface.ITALIC)
textView.setTypeface(null, Typeface.NORMAL)

 

반응형