Android List View
In my Layout there are some widgets are there in above to the开发者_StackOverflow社区 list view. When i scroll through the list view i want to scroll my layout fully.Please any one can suggest the answer
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
.
精彩评论