我试图在三个不同的行中用上标和其他文本表示一个数字,但由于某种原因换行符不起作用。
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 标签。帮助?