출처: http://blog.hansune.com/575
Html in textview
http://daniel-codes.blogspot.kr/2011/04/html-in-textviews.html
Tags Supported in String Resources
아래 태그들은 정적 스트링에 포함된 경우 android.content.res.StringBlock 에 의해 파싱된다.
- <a> (supports attributes "href")
- <annotation>
- <b>
- <big>
- <font> (supports attributes "height", "size", "fgcolor" and "bicolor", as integers)
- <i>
- <li>
- <marquee>
- <small>
- <strike>
- <sub>
- <sup>
- <tt>
- <u>
Tags Supported by Html.fromHtml()
무슨 이유인지, Html.fromHtml() 로 지원되는 태그의 종류가 다르다.
- <a> (supports attribute "href")
- <b>
- <big>
- <blockquote>
- <br>
- <cite>
- <dfn>
- <div>
- <em>
- <font> (supports attributes "color" and "face")
- <i>
- <img> (supports attribute "src". Note: you have to include an ImageGetter to handle retrieving a Drawable for this tag)
- <p>
- <small>
- <strong>
- <sub>
- <sup>
- <tt>
- <u>
폰트 색상 "color" 속성으로 지원되는 값.
- aqua
- black
- blue
- fuchsia
- green
- grey
- lime
- maroon
- navy
- olive
- purple
- red
- silver
- teal
- white
- yellow
'IT_Programming > Android_Java' 카테고리의 다른 글
Android 디바이스의 고유 번호 (Identifier) 획득 시 고려 해야 할 점 (0) | 2015.10.05 |
---|---|
[펌] Bitmap.recycle()은 가급적 호출해 주는 편이 좋다. (Android 2.x 버전) (0) | 2015.09.15 |
[펌] 안드로이드 오픈지엘(OpenGL ES2.0)의 기본 (0) | 2015.09.08 |
[펌] GLSurfaceView 소개 (0) | 2015.09.08 |
GLSurfaceView 배경 투명하게 만들기 (0) | 2015.09.08 |