[Android] code내에서 동적으로 setTextSize
android TextView setTextSize 할 때, default 설정은 sp 이며px로 입력하려면 아래와 같이 설정한다. 9sp setTextSize(TypedValue.COMPLEX_UNIT_SP, 9); setTextSize(TypedValue.COMPLEX_UNIT_PX, getResources().getDimensionPixelSize(R.dimen.typo14));textview_msg.setTextSize(TypedValue.COMPLEX_UNIT_SP, 20); 출처:http://stackoverflow.com/questions/6784353/inconsistency-when-setting-textview-font-size-in-code-and-in-resources
Computer/Android
2016. 3. 25. 00:56