String str = "검정 <font color=red>빨강</font> 검정";
하면
검정 빨강 검정 이 됩니다.
<font color=red>
는 즉, html로
<font color=red>빨강</font>
이 된다.
TextView txt = new TextView(context);
txt.setText(Html.fromHtml(str));
현재 string이 html 폼을 가진다고 해주면 된다.
String str = "검정 <font color=red>빨강</font> 검정";
TextView txt = new TextView(context);
txt.setText(Html.fromHtml(str));
'프로그래밍 > Android 짜투리 지식' 카테고리의 다른 글
[android] facebook multi image swipe (0) | 2013.07.22 |
---|---|
[android] imageView.setColorFilter (0) | 2013.06.03 |
[android] 연속적 이미지 보여주기(gif효과) (0) | 2013.03.07 |
[android] 제자리에서 도는 애니메이션 (0) | 2013.01.30 |
[androd] animation 적용 (0) | 2013.01.25 |