Reputation: 1
In my Layout there are some widgets are there in above to the list view. When i scroll through the list view i want to scroll my layout fully.Please any one can suggest the answer
Upvotes: 0
Views: 212
Reputation: 1007554
Put the widgets that are presently above the ListView
inside the ListView
, either by using addHeaderView()
, my MergeAdapter
, or your own custom Adapter
class. The, those widgets will scroll along with everything else in the ListView
.
Upvotes: 2