반응형
안드로이드, apply different colors on the texts in the textview using xml |
<xml>
<string name="various_colors">Here is a text. <![CDATA[<font color="#ff0000">This is red color</font>]]> and <![CDATA[<font color="#00ff00">This is green color</font>]]>. Like it?</string>
<En>
Various text color is not applied directly.
You need to convert the string as a Spanned form with Html.fromHtml function.
<Kr>
다양한 색상이 바로 적용되지 않습니다.
해당 string 을 Html.fromHtml 함수를 이용하여 Spanned 형태로 전환해야 합니다.
<Java Code>
textView.setText( Html.fromHtml( getString( R.string.various_colors ) ) );
반응형
'프로그래밍 놀이터 > 안드로이드, Java' 카테고리의 다른 글
[android] addToBackStack( String name ) 뭐하는 녀석이냐? (0) | 2013.10.23 |
---|---|
[java] full 한글 판별 코드 (0) | 2013.10.21 |
[android] how can I detect if notification clear button is clicked? (0) | 2013.10.16 |
[android] at GingerBread device GCM register returns SERVICE_NOT_AVAILABLE (4) | 2013.10.15 |
[android] HttpClient vs. HttpURLConnection (0) | 2013.10.11 |
댓글