Textview/EditView 多行仅换行

Textview/EditView Mulitline only wrap on line breaks

我试过 alsorts,但似乎无法 android 只在换行符处换行..

即内容如下:

This is line number 1 /r/n
This is a much much longer line number 2.. please don't wrap me /r/n

我很高兴滚动查看右侧的内容。

我已经尝试应用滚动视图包装器以及 scrollHorizo​​ntally="true" 但没有成功。

任何太长的行都会在我不想要的时候换行。

注:文字全部在一个StringBuilder中。使用 /r/n 换行正确,但如果太长也会换行(我不想要)。设置最大行数是行不通的,因为我想要不止一行....

我正在尝试按原样显示文件内容。

我目前的布局(尝试过其他东西)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:background="@color/white"
        android:clipToPadding="false"
        android:fillViewport="true"
        android:scrollbarStyle="outsideOverlay">

        <TextView
            android:id="@+id/tv_file_content"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@color/white"
            android:lineSpacingExtra="5dp"
            android:padding="10dp"
            android:scrollHorizontally="true"
            android:scrollbars="horizontal"
            android:text="some very long test in a line which hopefully shouldnt wrap as tht would be a crime against humanity :( lets now see"
            android:textColor="@color/black"
            android:textSize="20sp"/>
    </ScrollView>

</LinearLayout>

ScrollView 更改为 HorizontalScrollView 即可。

试着输入“\r\n”而不是“/r/n”,这对我很有帮助。