I have a LinearLayout with layout_gravity="bottom" inside a ScrollView
The problem is when the content reach the top of the ScrollView I can't scroll to see the top of this content.

I only can scroll to see the bottom of the screen but i can see only empty space .
This is my Layout XML Code :
<android.support.constraint.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="com.projects.zak_dev.errors.MainActivity"> <ScrollView android:layout_width="match_parent" android:layout_height="match_parent" tools:layout_editor_absoluteX="8dp" tools:layout_editor_absoluteY="8dp"> <LinearLayout android:layout_gravity="bottom" android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="vertical"> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" android:text="@string/content" /> </LinearLayout> </ScrollView> </android.support.constraint.ConstraintLayout> Can someone help me please !
