当我定义一个TextView在xml,我如何添加一个新的行?\n似乎不起作用。

<TextView
   android:id="@+id/txtTitlevalue"
   android:text="Line1 -\nLine2"
   android:layout_width="54dip"
   android:layout_height="fill_parent"
   android:textSize="11px" />

当前回答

一种方法是使用Html标签::

txtTitlevalue.setText(Html.fromHtml("Line1"+"<br>"+"Line2" + " <br>"+"Line3"));

其他回答

不要相信Visual编辑器。 你的代码在emu中工作。

如果你调试,你会看到字符串实际上是“\ \r\ \n”或“\ \n”,也就是说,它被转义了。所以如果你按摩那条线,去掉多余的\,你就得到了解决方案。如果从数据库中读取数据,情况尤其如此。

System.getProperty(“line.separator”);这对我很有用。

也可以加上&lt;br&gt;而不是\n。

然后你可以添加文本到TexView:

articleTextView.setText(Html.fromHtml(textForTextView));
<TextView
   android:id="@+id/txtTitlevalue"
   android:text="Line1: \r\n-Line2\r\n-Line3"
   android:layout_width="54dip"
   android:layout_height="fill_parent"
   android:textSize="11px" />

我认为这行得通。