TextView上意外的顶部和底部填充?

时间:2012-12-06 21:51:58

标签: android

我有一个TextView。我想设置它的背景颜色。但是颜色填充的顶部空间比底部空间更多。

<!-- red background. -->
<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="14sp"
    android:textStyle="bold"
    android:background="#f00"
    android:text="10.0" />

这是它渲染的方式(放大演示,我添加的绿线):

enter image description here

因此,顶部的额外空间使得它看起来像文本不在其自己的容器中居中。这是预期的吗?我希望文本在其自己的容器(红色区域)中垂直居中显示。

这是关于galaxy nexus,储存版本的软糖。

由于

1 个答案:

答案 0 :(得分:11)

添加以下属性:

android:includeFontPadding="false"