I’m creating an app that will support Android 2.2 and above.
In that I have 10 edit texts and 10 text views that I accommodate in a scroll view.
And I wanted to Accommodate a list view also inside the same activity.
Is it possible to accommodate the whole in a single activity?
You can have a ListView in a ScrollView, but that is a bad design. Even Eclipse will throw a warning. Moreover the behavior will be different, because ListView already has its own ScrollView.
So the only solution could be to have a Fixed length ScrollView and a ListView in some other Layout(Linear/Relative).