如何在TextView中检测换行符

时间:2018-12-21 17:09:07

标签: android kotlin textview

在我的Android应用中,我创建了8个TextView,它们彼此堆叠。现在,我想在这些TextView-Lines中加载一些纯文本。目前,我的弦乐带有“;”作为表示换行符的定界符,但是如果我自动检测换行而不是使用硬编码的分号方式,则会更加方便。

这是我目前的字串:

myString = "" +
"This seems to be some sort of spaceship,;" +
"the designs on the walls appear to be of;" +
"earth origin. It looks very clean here.;"

在另一个类中,我将该字符串加载到8个TextView中,并使用“;”将其加载到ArrayList中。作为分隔符。

public fun fillLines(myString: String) {
    // How To Make Line Breaks Automatic??

    for(i: Int in str until myString.split(";").size) {
        if(i > textViewArray.size - 1) {
            break
        }
        textViewArray[i].text = myString.split(";")[i]
        textViewArray[i].alpha = 1.0f
    }
}

有什么办法可以得到与上图所示相同的结果,但不将分隔符硬编码为“;”。但是相反,它会以某种方式自动检测TextView内部发生的换行符,然后将其用作分隔符,以通过所有8个TextView“行”。

之所以需要8个TextView作为一个单独的“文本行”彼此叠放,是因为我想使用一种动画技术。感谢您的帮助!

3 个答案:

答案 0 :(得分:0)

您可以用html填充文本视图。下面的例子。

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
      tvDocument.setText(Html.fromHtml(bodyData,Html.FROM_HTML_MODE_LEGACY));
 } else {
      tvDocument.setText(Html.fromHtml(bodyData));
 }

如果您使用分隔符;可以调用方法replaceAll(";", "<br>");

答案 1 :(得分:0)

好的,我现在可以正常工作了:

首先,您必须为textviews添加以下属性:

android:singleLine="true"
android:ellipsize="none"

然后您可以执行以下操作:

public fun fillStorylines() {
    val linecap = 46
    var finalLine: String
    var restChars = ""
    val index = 9999
    val text1: String = "" +
            "This seems to be some sort of spaceship, " +
            "the designs on the walls appear to be of " +
            "earth origin. It looks very clean here. "
    for(j: Int in 0..index) {
        try {
            finalLine = ""
            val lines: List<String> = (restChars + text1.chunked(linecap)[j]).split(" ")
            for (i: Int in 0 until lines.size - 1) {
                finalLine += lines[i] + " "
            }
            textViewArray[j].text = finalLine
            textViewArray[j].alpha = 1.0f
            restChars = lines[lines.size - 1]
        } catch (ex: Exception) {
            break
        }
    }
}

如果有人知道更优雅的解决方法,请继续,我们非常感谢您的反馈意见:)

答案 2 :(得分:0)

断行变得相当复杂,因此我的建议是允许TextView执行测量和布局以确定断行。您可以使用与其他视图相同的样式来隐藏TextView,并将其附加到布局上,以使其宽度与各个TextView实例相同。从那里添加一个布局更改侦听器,然后您可以从TextView Layout中检索各行:

myTextView.text = // your text string here
myTextView.addOnLayoutChangeListener { view, _, _, _, _, _, _, _, _ ->
    (view as? TextView)?.layout?.let { layout ->
        // Here you'll have the individual broken lines:
        val lines = (0 until layout.lineCount).map {
            layout.text.subSequence(layout.getLineStart(it), layout.getLineVisibleEnd(it)
        }
    }
}

也就是说,这伴随着警告,您将失去TextView提供的连字符功能,因此您可能希望完全禁用连字符功能。