我正在尝试在TextView中添加换行符。
我试过建议\ n,但这无济于事。这是我设置文字的方式。
TextView txtSubTitle = (TextView)findViewById(r.id.txtSubTitle);
txtSubTitle.setText(Html.fromHtml(getResources().getString(R.string.sample_string)));
这是我的字符串: <string name="sample_string">some test line 1 \n some test line 2</string>
它应该显示如下:
some test line 1
some test line 2
但它显示如下:some test line 1 some test line 2
。
我想念什么吗?
\n
确实是最好的方法。github.com/paour/StringResourceTest
Html.fromHtml()
功能并简单使用即可txtSubTitle.setText(getResources().getString(R.string.sample_string))
。