Put your view inside of it. ScrollView only accepts one child, so you may need to add all of your components to LinearLayout and then add LinearLayout inside ScrollView.
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</ScrollView>
If this is not what you are looking for, add
android:layout_alignParentBottom="true"
source
share