Android文本视图 - 顶部和底部边缘被剪掉

时间:2014-01-09 22:33:18

标签: android xml textview

有人可以解释一下吗? 为什么第三个TextView很奇怪? enter image description here

以前两行的定义是相同的,我没有用java触及样式...

编辑:我添加了XML布局文件。 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/rl"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="top" >

    <TextView
        android:id="@+id/quadEqu"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="25dp"
        android:text="@string/quadequ"
        android:textSize="27sp" />

    <Button
        android:id="@+id/closeBtn"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="30dp"
        android:text="@string/close"
        android:onClick="close" />

    <TextView
        android:id="@+id/stepOne"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/quadEqu"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="25dp"
        android:text="@string/quadEquForm"
        android:textSize="18sp" />

    <TextView
        android:id="@+id/stepTwo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/stepOne"
        android:layout_below="@+id/stepOne"
        android:text="@string/quadEquForm"
        android:textSize="18sp" />

    <TextView
        android:id="@+id/stepThree"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/stepOne"
        android:layout_below="@+id/stepTwo"
        android:text="@string/quadEquForm"
        android:textSize="18sp" />

</RelativeLayout>

3 个答案:

答案 0 :(得分:0)

这是一种奇怪的行为。

尝试将'stepTwo'的内容设置为'stepThree'。 如果出现同样的问题,那么来自TextView的问题。

您应该检查是否以编程方式修改了“stepThree”textView的填充。

答案 1 :(得分:0)

在android文本视图中,当您尝试渲染下标时,文本会在顶部和底部被剪切。为避免这种情况,您可以尝试从HTML设置文本。

示例

stepThree.setText(Html.fromHtml("Some text<sup><small>1</small></sup>"));

stepThree.setText(Html.fromHtml(
        "HCO<sub><small><small>3</small></small></sub>));

有关详细信息,请参阅此链接。

Android TextView's subscript being clipped off

Subscript and Superscript a String in Android

答案 2 :(得分:0)

您需要为android:layout_height更改TextView(所有3更好)。

<TextView
    android:id="@+id/stepOne"
    android:layout_width="wrap_content"
    android:layout_height="30dp"
    android:layout_below="@+id/quadEqu"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="25dp"
    android:text="@string/quadEquForm"
    android:textSize="18sp" />

<TextView
    android:id="@+id/stepTwo"
    android:layout_width="wrap_content"
    android:layout_height="30dp"
    android:layout_alignLeft="@+id/stepOne"
    android:layout_below="@+id/stepOne"
    android:text="@string/quadEquForm"
    android:textSize="18sp" />

<TextView
    android:id="@+id/stepThree"
    android:layout_width="wrap_content"
    android:layout_height="30dp"
    android:layout_alignLeft="@+id/stepOne"
    android:layout_below="@+id/stepTwo"
    android:text="@string/quadEquForm"
    android:textSize="18sp" />