Android TextView 设置可滚动显示更多内容

步骤一

设置 android:scrollbars="vertical"

   

其中TextView高度设置成自适应也可以,不一定非要写死高度android:layout_height="wrap_content"

步骤二

在代码中设置属性

//      设置内容可滚动
        tv_dialog_flower_content.movementMethod = ScrollingMovementMethod.getInstance()

经过以上步骤,TextView就可以滑动了

你可能感兴趣的:(Android TextView 设置可滚动显示更多内容)