0

可能重复:
如何在 Android TextView 中添加换行符?

我试图在三个不同的行中用上标和其他文本表示一个数字,但由于某种原因换行符不起作用。

TextView tvAnswer = (TextView)findViewById(R.id.textView_answer);
tvAnswer.setText(Html.fromHtml("16<sup>4</sup>" + "istext \nistextonanotherline"));

“\n”不会导致换行,但它没有我需要的“Html.fromHtml”。

这也不起作用:

tvAnswer.setText(Html.fromHtml("16<sup>4</sup>" + "istext<br>istextonanotherline"));

因为 Android 显然不支持 br HTML 标签。帮助?

4

1 回答 1

1

一种可能的解决方案是

tvAnswer.setText(Html.fromHtml("16<sup>4</sup>" + "istext "));
    tvAnswer.append("\n");
于 2012-08-31T23:26:48.093 回答