如何在Android上设置行高textView

时间:2014-12-29 15:32:42

标签: android

我给出了在我的应用程序中使用textView的以下属性。 (中间的绿色文字)

<TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:textSize="20sp"
                android:textStyle="bold"
                android:gravity="center_horizontal"
                android:text="10/9"
                android:id="@+id/estimate_fertility_date"
                />

但是,有像示例图片这样的空格。我想设置这些空格,因为当App初始化时,它看起来很糟糕。

我已经研究了大约1个小时,我找到了一些答案,但它们并不是我想要的答案。 https://stackoverflow.com/a/6864017/2834196

enter image description here

2 个答案:

答案 0 :(得分:3)

为保证金添加负值会对您有所帮助吗?

<TextView
android:layout_marginTop="-10dp" />

答案 1 :(得分:0)

在普通TextView中绝对没有文字填充是不容易的。一种方法是为TextView设置负余量,或者只使用textview.setIncludeFontPadding(false)来减少填充。