我有一个高度设置为 wrap_content 的 TextView - 但是,它在我的应用程序中留下了很多额外的空间。
textview 中的文本来自@+string,似乎 wrap_content 将其高度设置为字符串变量的高度,而不是插入的实际文本。
如果我更换
android:text="@+string/introGetStarted"
和
android:text="Let's get started!"
然后它似乎显示了正确的高度并只包装了文本。
我错过了什么吗?
我的完整TextView,供参考:
<TextView
android:id="@+id/textViewTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/d15"
android:layout_marginRight="@dimen/d30"
android:layout_marginTop="@dimen/d25"
android:lineSpacingExtra="-10sp"
android:text="@string/introGetStarted"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="@dimen/d70" />