如何滚动到给定的行号,ScrollView 中的 TextView

How to scroll to a given line number, TextView inside ScrollView

我在 ScrollView 中有一个 TextView。我想滚动文本,以便已知行号或多或少垂直居中。这应该不难,但似乎很难。我还没有看到任何专门解决滚动到给定行号的问题的帖子或教程。

经过我的研究,我认为它应该像这样工作......

scroller.scrollTo(0, lineNumb * html.getLineHeight());

其中scroller是ScrollView的R.Id,html是TextView,lineNumb明明是行号,但是文字不动

我已经把它变成runnable了,但是还是不开心...

scroller.post(new Runnable() {
    public void run() {
    scroller.scrollTo(0, lineNumb * html.getLineHeight());}});

我花了一整天的时间试图解决这个问题,研究了许多帖子、教程等,但我陷入了死胡同。我一定错过了一些非常简单的东西。希望能帮到你。

米克

您可以像那样按行号在 ScrollView 内滚动 textView

textView.setText(text);
final int lineNumber = 20;
scroller.post(new Runnable() {
    @Override
    public void run() {
        int y = textView.getLayout().getLineTop(lineNumber);
        scroller.scrollTo(0, y);
    }
});

此外,您只能滚动 textView 而无需换行 scrollView

<TextView
    android:id="@+id/text"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:scrollbars="vertical"
    android:maxLines="10"
    android:padding="16dp"/>

要滚动 textView :

TextView textView = (TextView) findViewById(R.id.text);
textView.setMovementMethod(new ScrollingMovementMethod());
final int lineNumber = 20
textView.post(new Runnable() {
    @Override
    public void run() {
        int y = textView.getLayout().getLineTop(lineNumber);
        textView.scrollTo(0, y);
    }
});

希望对你有用。