ScrollView is a view group that is used to make vertically scrollable views.
You may place Linear Layout inside the scroll view
Example of ScrollView
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp">
</ScrollView>
Post a Comment