I'm trying to set up a TextView vertical scroll in the XML layout, it barely works, The scroll seems to move when I hardly swipe down the vertical bar, I mostly get to scroll down the layout instead of the textview, it's difficult.
I attached my code below.
<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"  
    />

 
     
    