有两种方法可以设置textview的文本大小。我对setTextSize(int unit,float size)感兴趣的那个。我无法找到所有单位的int列表(dp,sp,..)。有谁知道Android中这些单位的int值是多少?感谢
答案 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
希望有所帮助!