gpt4 book ai didi

android - TextView 上标显示不正确

转载 作者:行者123 更新时间:2023-11-29 14:20:59 24 4
gpt4 key购买 nike

我正在使用找到的代码:Subscript and Superscript a String in Android在第一个答案中,但将其与前一个字符串连接起来,因此我的代码看起来类似于:

TextView text = (TextView) findViewById(R.id.text);
text.setText(text.getText().toString()+Html.fromHtml("<sup>-2</sup>"));

比如说,文本的内容是“3x”,使用setText设置文本后,它格式化为“3x-2”,没有下标。

TextView 的 XML 是:

<TextView
android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="55dp"
android:layout_marginTop="210dp"
android:text="3x"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="14pt"
android:visibility="VISIBLE"
/>

感谢您的帮助。

最佳答案

代替这一行..

text.setText(text.getText().toString()+Html.fromHtml("<sup>-2</sup>"));

这样试试

 text.setText(Html.fromHtml(text.getText().toString()+"<sup>-2</sup>"));

关于android - TextView 上标显示不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10162961/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com