我有一个包含大文本的textview,但是我想给出项目符号,换行符,我尝试将•
之类的xml实体放置在我的string.xml
中,但无法获取换行符,中间很少有文本,我喜欢也使用证明
String nodata="hi how are you<br/>•welcome to stackoverflow"
TextView nodata= ((TextView) findViewById(R.id.nodata));
nodata.setText(Html.fromHtml(nodatafound));
这样的作品,但我无法使用辩解,
有什么办法可以做到这一点?
最佳答案
谢谢大家...我终于做到了
String nodata="hi how are you<br/>•welcome to stackoverflow"
TextView nodata= ((TextView) findViewById(R.id.nodata));
nodata.setText(Html.fromHtml(nodatafound));
为了证明左对齐,我确实在布局文件
android:layout_gravity=center|left
中进行了更改我希望这样做有更好的方法。