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.
Share
Post a Comment
for "Making Linearlayout Scrollable"
Post a Comment for "Making Linearlayout Scrollable"