I have an activity which is displaying walking directions as text.
I have a group of TextViews, 5 contain “Step x” where x is the step number and 5 more TextViews which contain the actual instructions.
The problem is that the last TextView goes of screen so I want to have the group of TextViews scroll as if they’re one. Is this possible? I know ScrollView seems to only take one TextView as a child.
I was thinking of having all the text in one TextView however I would not be able to apply styling to the “Step x” text individually.
You can just put all your text views into a LinearLayout and then put that layout into the ScrollView.