TextView文本化方法

时间:2011-07-25 04:39:35

标签: android textview

有两种方法可以设置textview的文本大小。我对setTextSize(int unit,float size)感兴趣的那个。我无法找到所有单位的int列表(dp,sp,..)。有谁知道Android中这些单位的int值是多少?感谢

1 个答案:

答案 0 :(得分:3)

通过API ...

sp:TypedValue.COMPLEX_UNIT_SP

dip:TypedValue.COMPLEX_UNIT_DIP

查看所有可能单位的TypedValue类的常量。

http://developer.android.com/reference/android/util/TypedValue.html http://developer.android.com/reference/android/widget/TextView.html#setTextSize(int,love)

您还可以动态转换为像素:http://developer.android.com/guide/practices/screens_support.html#dips-pels

希望有所帮助!

相关问题