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

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

当前回答

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

其他回答

对于TextView中的新行,只需在文本中间添加\n 它的工作原理。

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

你需要把\n放在文件string.xml中

<string name="strtextparkcar">press Park my Car to store location \n</string>

您需要将“\n”放在strings.xml文件中,而不是在页面布局中。

尝试System.getProperty(“line.separator”);