Android:将垂直滚动添加到TextView

时间:2016-06-26 00:48:33

标签: android scroll textview

我试图在XML布局中设置一个TextView垂直滚动,它几乎不起作用,当我几乎没有向下滑动垂直条时滚动似乎移动,我主要是向下滚动布局而不是textview,很难。

我在下面附上了我的代码。

<TextView
    android:id="@+id/evento_descripcion"
    android:layout_width="match_parent"
    android:layout_height="150dp"
    android:text="@string/t_descripcion"        
    android:textColor="#010101"
    android:layout_below="@+id/evento_fondo"
    android:textSize="16sp"        
    android:layout_marginTop="20dp"
    android:gravity="left"
    android:layout_marginLeft="20dp" 
    android:layout_marginRight="20dp"      
    android:scrollbars="vertical"
    android:fadeScrollbars="false"
    android:scrollbarAlwaysDrawVerticalTrack="true"
    android:scrollbarStyle="insideInset"  


    />

enter image description here

1 个答案:

答案 0 :(得分:0)

尝试将此添加到您的代码中

YOURTEXTVIEW.setMovementMethod(new ScrollingMovementMethod());

同时检查thisthis,我认为它会对您有所帮助。