ScrollView Linearlayout And Listview
I'm doing an android app, and I just want to have an scrollable layout, but inside of this layout I want to put some textView and 2 listView, and this is my problem, the listView.
Solution 1:
ListViews
shouldn't be placed inside a ScrollView
because the ListView
class implements its own scrolling and it just doesn't receive gestures because they all get handled by the parent ScrollView
. However you can add views you want to be scrolled to the ListView
as headers or footers.
Post a Comment for "ScrollView Linearlayout And Listview"