滚动条="vertical" 在 TextView 中不起作用

scrollbars="vertical" is not working in TextView

滚动条显示但不工作或滚动,如下图所示

XML:

<TextView
    android:id="@+id/text_view_dialog_notes"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="7dp"
    android:layout_marginRight="7dp"
    android:hint="@string/rv_notes_content"
    android:padding="5dp"
    android:scrollbars="vertical"
    android:minLines="10"
    android:maxLines="10"
    android:textSize="17sp" />

哪里出了问题,如何解决?

确保将其添加到代码中:

yourTextView.setMovementMethod(new ScrollingMovementMethod());

在 textView 上使用滚动条

您必须在 java

中添加此行
textView.setMovementMethod(new ScrollingMovementMethod());