发布网友 发布时间:2022-04-25 06:11
共1个回答
热心网友 时间:2023-11-02 00:28
在android中,我们有两种情况可以设置字体大小。一种是在xml页面中,另一种是在java代码中。
<TextView
android:id="@+id/hello_word"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="14sp"
android:text="@string/hello_world" />
其中android:textSize字段就是设置字体大小。谷歌官方推荐在设置字体大小时候,用sp为单位。
在android中系统预设了3种默认字体样式供选择,即大、中、小号字体,默认的为小号字体。