TextView系列:TextView设置滚动

Posted zhangjin1120

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了TextView系列:TextView设置滚动相关的知识,希望对你有一定的参考价值。

上效果。

  • 一行代码就够了
  tv.setMovementMethod(new ScrollingMovementMethod());
  • 有需求,也可以再加个滚动条,android:scrollbars="vertical"
  • 完整布局文件
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout 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"
    tools:context=".MainActivity">

    <TextView
        android:id="@+id/tv"
        android:layout_width="200dp"
        android:background="#ff0000"
        android:layout_height="wrap_content"
        android:scrollbars="vertical"
        android:maxHeight="40dp"
        android:text="强盗的本质是破格获取,破格获取和直接获取是两个不同的概念。你们没有自信与强者在同一个规则下竞争,这只能说明你是弱者,因为弱势文化所追求的最高价值就是破格获取。所以,强盗的逻辑从本质上讲是懦弱的生存哲学,所以你不算好汉。"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

以上是关于TextView系列:TextView设置滚动的主要内容,如果未能解决你的问题,请参考以下文章

如果要求是 Textview 应该显示最多 4 行的完整文本,那么如何设置 textview 的高度,然后它应该在 swift 3 中滚动?

android TextView实现滚动显示效果

TextView滚动如何实现

无限TextView垂直滚动?

如何设置滚动视图内并包含两个 TextView 的线性布局的可见性消失?

TextView 滚动不顺畅