android studio的button字体大小
时间: 2023-09-13 10:07:44 浏览: 678
button字体设置大小
3星 · 编辑精心推荐
可以在xml布局文件中设置Button的字体大小,可以使用以下代码:
```
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
android:textSize="16sp" />
```
其中,android:textSize属性用于设置字体大小,单位为sp(scaled pixels),这是一种与屏幕密度无关的单位,可以保证在不同屏幕上显示效果相同。可以根据需要修改字体大小。
阅读全文