Skip to content Skip to sidebar Skip to footer

Making Linearlayout Scrollable

I am trying to make a linear layout scrollable by using a scrollView so that the images put into the imageViews don't push the other views and functions off of the screen like this

Solution 1:

Put

android:orientation="vertical"

in LinearLayout and not in ScrollView ;)

The default orientation for LinearLayout is horizontal and your TextView probably spans across multiple lines.

Post a Comment for "Making Linearlayout Scrollable"