반응형
출처 - http://comxp.tistory.com/114
String textString ="테스트문자열입니다"
SpannableString sText = new SpannableString(textString);
TextView text = ((TextView)findViewById(R.id.testtext));
sText.setSpan(new ForegroundColorSpan(Color.RED), 1, 3, 0);
sText.setSpan(new StyleSpan(Typeface.ITALIC), 2,5,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
text.append(sText);
반응형
'개발 > 안드로이드' 카테고리의 다른 글
[Android]Shape 요소 (0) | 2013.11.05 |
---|---|
TextWatcher 설명 (0) | 2013.10.09 |
Android property animation (0) | 2013.06.03 |
안드로이드의 파일 입/출력에 필요한 경로를 얻는 방법 총정리! (0) | 2013.01.24 |
삼성 멀티윈도우 지원 (0) | 2013.01.03 |
댓글