Why my TextView field doesn't scroll with finger? Have I missed something?
<TextView
android:text="Hi! Type help for more info"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="match_parent"
android:layout_height="186.0dp"
android:id="@+id/chat_box"
android:layout_marginBottom="5dp"
android:maxLines="12"
android:textSize="12sp"
android:overScrollMode="always"
android:scrollbarStyle="insideInset"
android:scrollbars="vertical" />
I've tried solution from another post, but for some reason my TextView doesn't have setMovementMethod(new ScrollingMovementMethod()) method.