出于某种原因,我的多行TextView不会将\ n作为新行字符处理。难道我做错了什么?我已经尝试使用.setText()
设置一个String,它有多个" \ n"的实例,但该字符串只显示为一行,其中\ n可见为文本。
这是我的TextView。
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textMultiLine"
android:ems="10"
android:id="@+id/noteText"
android:layout_marginTop="30dp"
android:maxHeight="200dp"
android:layout_below="@+id/ActivityTitle"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:editable="false"
android:clickable="false"
android:cursorVisible="false"
android:focusable="false"
android:focusableInTouchMode="false"
/>
由于
修改:小片段:
noteText.setText(result);
//result == "Testing\nTest"