반응형
1. dimen.xml
<resources>
....
<dimen name="font_middle_size">18dp</dimen>
<dimen name="font_small_size">12dp</dimen>
...
</resources>
2. code
* textsize에 들어갈 값이 PX 이라는 것을 명시하고, getDimension으로 px을 가져와 적용한다.
( getDimension은 pixcel을 반환한다. )
...
textView.setTextSize(TypedValue.COMPLEX_UNIT_PX, context.getResources().getDimension(R.dimen.font_small_size));
...
p.s 매번 까먹네..
반응형
'Programming > Android' 카테고리의 다른 글
You need to use a Theme.AppCompat theme (or descendant) with the design library (0) | 2017.04.14 |
---|---|
gradle files have changed since last project sync. a project sync may be necessary (0) | 2017.04.14 |
Duplicate files copied in APK 해결방법 (0) | 2017.04.03 |
BitmapFactory.decodeFile : java.lang.OutOfMemoryError (0) | 2017.03.24 |
카카오톡 해시키(Hash key) 받아오는 방법 (0) | 2017.03.15 |