2016년 12월 11일 일요일

안드로이드 TextView 폰트 이탤랙체 (Italic)



안드로이드 TextView 폰트 이탤랙체 (Italic) 구현

textView.setTypeface(null, Typeface.BOLD_ITALIC);
굵은것 + 이탤릭체

textView.setTypeface(null, Typeface.BOLD);
굵은것

textView.setTypeface(null, Typeface.ITALIC);
이탤릭체

textView.setTypeface(null, Typeface.NORMAL);
보통체

즐거운 시간 보내세요~