我有一个包含大文本的textview,但是我想给出项目符号,换行符,我尝试将&#8226之类的xml实体放置在我的string.xml中,但无法获取换行符,中间很少有文本,我喜欢也使用证明

String nodata="hi how are you<br/>&#8226welcome to stackoverflow"
TextView nodata= ((TextView) findViewById(R.id.nodata));
nodata.setText(Html.fromHtml(nodatafound));

这样的作品,但我无法使用辩解,
有什么办法可以做到这一点?

最佳答案

谢谢大家...我终于做到了

String nodata="hi how are you<br/>&#8226;welcome to stackoverflow"
TextView nodata= ((TextView) findViewById(R.id.nodata));
nodata.setText(Html.fromHtml(nodatafound));

为了证明左对齐,我确实在布局文件android:layout_gravity=center|left中进行了更改

我希望这样做有更好的方法。

09-30 21:03