반응형
Text를 표시 할때 생각보다 고려해야 할 사항들이 많습니다.
[Android]
안드로이드 쪽은 이와 관련해서 살펴보려면, TextView와 TextAttribute 를 살펴보는 것이 좋습니다.
https://developer.android.com/reference/android/widget/TextView.html
https://developer.android.com/reference/android/text/FontConfig.html
https://developer.android.com/reference/java/awt/font/TextAttribute.html
[Tizen]
https://developer.tizen.org/development/guides/native-application/user-interface/efl/fonts
EFL 의 textblock에 style 지정하는 방식이 정리된 link입니다.
description { text { font: "Tizen:style=Regular"; font_size: 36; text_class: "label"; } }
description { text { font: "Tizen:style=Regular"; font_size: 36; text_class: "tizen"; } }
Table: Supported font styles
Font feature | Style attribute |
---|---|
font_style | normal |
oblique | |
italic | |
font_width | normal |
ultracondensed | |
extracondensed | |
condensed | |
semicondensed | |
semiexpanded | |
expanded | |
extraexpanded | |
ultraexpanded | |
font_weight | normal |
thin | |
ultralight | |
light | |
book | |
medium | |
semibold | |
bold | |
ultrabold | |
black | |
extrablack |
'개발 Note > it 이야기' 카테고리의 다른 글
Galaxy Watch Active S/W update (Bixby enabled) (0) | 2019.07.23 |
---|---|
라즈베리파이 개발 (0) | 2018.04.03 |
일탈, 디버깅 포인트 (0) | 2014.09.06 |
C에서 C++ 그리고 framework (0) | 2014.09.02 |
touch press / release 로 UI의 action을 처리하는 것이 좋은가? (0) | 2011.11.11 |