我在android中的文本有问题。
假设我制作字体大小为 100px 的 TextView,现在我正在输入文本:TÓjy 在设备屏幕上测量此文本,从字体的最高点到最低点的高度约为 115px。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="100px"
android:textSize="100px"
android:text="TYyÓj" />
</LinearLayout>
我想确定如果我设置 100px 字体大小,它将是 100px 高度,有没有办法做到这一点?
第一个高度为 100px,第二个在 wrap_content 上,第一个 y 被剪切。