我尝试并搜索了此问题的解决方案,但没有成功。字母的顶部(例如小写字母“ d”的尾部)被剪切掉。这是我目前拥有的:

按代码:

从onClickHandler .....

字符串selectedorder =“”;
...
    如果(num_players == 3){
            editor.putString(“ prefPrefp3_name”,child.getText()。toString());
            selectedorder =“ 3rd”;}
...
        order.setText(Html.fromHtml(selectedorder));

从CursorAdapter BindView .................

        TextView tv4 = (TextView) view.findViewById(R.id.dspplyrorder);
        tv4.setText(Html.fromHtml(playersCursor.getString(PlayerOrder)));


从XML那里,我试图获取@ + id / dspplyrorder而不是在上标中剪切“ d”的尾巴。

 


<LinearLayout android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <TextView android:id="@+id/dsp_id"
            android:layout_width="120dip"
            android:layout_height="wrap_content"/>
        <TextView android:id="@+id/dspplyrname"
            android:layout_width="180dip"
            android:textColor="#7CFC00"
            android:textStyle="italic"
            android:layout_marginRight="20dip"
            android:layout_marginLeft="20dip"
            android:paddingRight="3dp"
            android:gravity="left"
            android:textSize="25sp"
            android:layout_height="wrap_content"/>
        <TextView android:id="@+id/dspplyrorder"
            android:layout_width="30dip"
            android:gravity="left"
            android:textColor="#FFFFFF"
            android:textSize="16sp"
            android:layout_height="wrap_content"/>
        <ToggleButton android:id="@+id/button_toggle"
            android:text="@string/buttons_1_toggle"
            android:textOff="Select"
            android:layout_height="wrap_content"
            android:layout_width="wrap_content"
            android:onClick="myClickHandler" />
  </LinearLayout>


我不必担心会影响上面或下面的行的行距,这似乎是最常出现的问题讨论。我必须做一些真正的转储,因为似乎没有其他人遇到这个问题。请帮助。

最佳答案

This solution为我工作。

上标的文本通常在浏览器呈现时变小,在这里似乎没有发生,因此您可以通过执行以下操作来复制(并解决此问题):

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

10-06 06:14